You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import injectTapEventPlugin from 'react-tap-event-plugin';
|
|
|
|
|
|
|
|
// Needed for onTouchTap
|
|
|
|
// http://stackoverflow.com/a/34015469/988941
|
|
|
|
injectTapEventPlugin();
|
|
|
|
|
|
|
|
import getMuiTheme from 'material-ui/styles/getMuiTheme';
|
|
|
|
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
|
|
|
|
import SignIn from './components/SignIn';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class App extends React.Component {
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<MuiThemeProvider muiTheme={getMuiTheme()}>
|
|
|
|
<SignIn />
|
|
|
|
</MuiThemeProvider>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|