Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function Theme(props) {
  2. return (
  3. <MuiThemeProvider theme={createMuiTheme()}>
  4. {props.children}
  5. </MuiThemeProvider>
  6. );
  7. }
  8.  
  9. <Button color="primary">
  10. Primary
  11. </Button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement