Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save YashdalfTheGray/565fa4f64166c3c561ad3dc980c3219d to your computer and use it in GitHub Desktop.
Save YashdalfTheGray/565fa4f64166c3c561ad3dc980c3219d to your computer and use it in GitHub Desktop.
Smiley Face
import React from 'react';
import darkBa from 'material-ui/styles/baseThemes/darkBa';
console.log(darkBa);
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import RaisedButton from 'material-ui/RaisedButton';
<MuiThemeProvider
muiTheme={getMuiTheme(darkBa)}>
<RaisedButton
label="Primary"
primary={true} />
</MuiThemeProvider>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment