github.com/openethereum/go-ethereum@v1.9.7/dashboard/assets/index.jsx (about)

     1  // @flow
     2  
     3  // Copyright 2017 The go-ethereum Authors
     4  // This file is part of the go-ethereum library.
     5  //
     6  // The go-ethereum 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 go-ethereum library is distributed in the hope that it will be useful,
    12  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    13  // MERCHANTABILITY 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 go-ethereum 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/core/styles/MuiThemeProvider';
    23  import createMuiTheme from '@material-ui/core/styles/createMuiTheme';
    24  
    25  import Dashboard from './components/Dashboard';
    26  
    27  const theme: Object = createMuiTheme({
    28  	// typography: {
    29  	// 	useNextVariants: true,
    30  	// },
    31  	palette: {
    32  		type: 'dark',
    33  	},
    34  });
    35  const dashboard = document.getElementById('dashboard');
    36  if (dashboard) {
    37  	// Renders the whole dashboard.
    38  	render(
    39  		<MuiThemeProvider theme={theme}>
    40  			<Dashboard />
    41  		</MuiThemeProvider>,
    42  		dashboard,
    43  	);
    44  }