Skip to content

Instantly share code, notes, and snippets.

@KryptKode
Created September 25, 2019 12:18
Show Gist options
  • Save KryptKode/d70e061241d57ed3e6ff3f0a5ea57708 to your computer and use it in GitHub Desktop.
Save KryptKode/d70e061241d57ed3e6ff3f0a5ea57708 to your computer and use it in GitHub Desktop.
import React from 'react';
import classNames from 'classnames';
import {
withStyles
} from '@material-ui/core';
import styles from './styles';
const ComponentName = ({classes, className})=>{
const rootClass = classNames(classes.root, className);
return (
<div className={rootClass}>
</div>
);
}
export default withStyles(styles)(ComponentName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment