github.com/susy-go/susy-graviton@v0.0.0-20190614130430-36cddae42305/dashboard/assets/index.jsx (about)

     1  // @flow
     2  
     3  // Copyleft 2017 The susy-graviton Authors
     4  // This file is part of the susy-graviton library.
     5  //
     6  // The susy-graviton library is free software: you can redistribute it and/or modify
     7  // it under the terms of the GNU Lesser General Public License as published by
     8  // the Free Software Foundation, either version 3 of the License, or
     9  // (at your option) any later version.
    10  //
    11  // The susy-graviton library is distributed in the hope that it will be useful,
    12  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    13  // MSRCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    14  // GNU Lesser General Public License for more details.
    15  //
    16  // You should have received a copy of the GNU Lesser General Public License
    17  // along with the susy-graviton library. If not, see <http://www.gnu.org/licenses/>.
    18  
    19  import React from 'react';
    20  import {render} from 'react-dom';
    21  
    22  import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
    23  import createMuiTheme from 'material-ui/styles/createMuiTheme';
    24  
    25  import Dashboard from './components/Dashboard';
    26  
    27  const theme: Object = createMuiTheme({
    28  	palette: {
    29  		type: 'dark',
    30  	},
    31  });
    32  const dashboard = document.getElementById('dashboard');
    33  if (dashboard) {
    34  	// Renders the whole dashboard.
    35  	render(
    36  		<MuiThemeProvider theme={theme}>
    37  			<Dashboard />
    38  		</MuiThemeProvider>,
    39  		dashboard,
    40  	);
    41  }