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