materialuiupgraded
Version:
Material-UI's workspace package
18 lines (15 loc) • 329 B
JavaScript
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>
);
}