github.com/xxRanger/go-ethereum@v1.8.23/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/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 }