mirror of
https://github.com/suren-atoyan/monaco-react.git
synced 2026-01-18 15:54:45 +00:00
14 lines
258 B
JavaScript
14 lines
258 B
JavaScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
const useStyles = makeStyles(theme => ({
|
|
root: {
|
|
width: '100%',
|
|
height: '100%',
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
padding: 20,
|
|
},
|
|
}));
|
|
|
|
export default useStyles;
|