Skip to content
Snippets Groups Projects
Toolbar.jsx 465 B
Newer Older
  • Learn to ignore specific revisions
  • import React from "react";
    import { withStyles } from "@material-ui/core/styles";
    
    const styles = theme => ({
        containerDefault: {
            padding: `${theme.spacing(1)}px ${theme.spacing(2)}px`
        },
        containerSquare: {
            padding: `${theme.spacing(2)}px ${theme.spacing(2)}px`
        }
    })
    
    class Toolbar extends React.Component {
        render() {
            return (
                <div>Toolbar</div>
            )
        }
    }
    
    export default withStyles(styles)(Toolbar)