import * as _ from 'lodash'; import * as React from 'react'; import Paper from 'material-ui/Paper'; import {utils} from 'ts/utils/utils'; import {DefaultPlayer as Video} from 'react-html5video'; import 'react-html5video/dist/styles.css'; interface LoadingProps {} interface LoadingState {} export class Loading extends React.Component { public render() { return (
{utils.isUserOnMobile() ? :
}
Connecting to the blockchain...
); } }