github.com/alexdevranger/node-1.8.27@v0.0.0-20221128213301-aa5841e41d2d/dashboard/assets/index.jsx (about)

     1  // @flow
     2  
     3  // Copyright 2017 The go-ethereum Authors
     4  // This file is part of the go-dubxcoin library.
     5  //
     6  // The go-dubxcoin 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-dubxcoin 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-dubxcoin 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  }