UNPKG

@activelylearn/material-ui

Version:

Material-UI's workspace package

20 lines (16 loc) 322 B
// @flow import React from 'react'; import Paper from '@material-ui/core/Paper'; const style = { margin: 15, padding: 30, }; export default function SimplePaper() { return ( <div> <Paper style={style} /> <Paper style={style} square /> <Paper style={style} elevation={6} /> </div> ); }