Skip to content

Instantly share code, notes, and snippets.

Created January 9, 2018 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/96f5534e9c938313299d0938f862df00 to your computer and use it in GitHub Desktop.
Save anonymous/96f5534e9c938313299d0938f862df00 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import Paper from 'material-ui/Paper';
class PaperPanel extends Component {
render() {
const panelStyle = {
width: '400px',
marginLeft: '42%',
marginRight: '50%',
}
return (
<Paper style={panelStyle} zDepth={2}>
</Paper>
)
}
}
export default PaperPanel;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment