Skip to content

Instantly share code, notes, and snippets.

@harconst
Created May 31, 2018 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harconst/b1767e35331278957ea230d28ebf1862 to your computer and use it in GitHub Desktop.
Save harconst/b1767e35331278957ea230d28ebf1862 to your computer and use it in GitHub Desktop.
import React from "react";
import ReactDOM from "react-dom";
import { MuiThemeProvider, createMuiTheme } from "@material-ui/core/styles";
import App from "./app";
const theme = createMuiTheme();
ReactDOM.render(
<MuiThemeProvider theme={theme}>
<App />
</MuiThemeProvider>,
document.getElementById("root")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment