import React from "react"; import Paper from "@material-ui/core/Paper"; import CssBaseline from "@material-ui/core/CssBaseline/CssBaseline"; import Typography from '@material-ui/core/Typography'; import Grid from '@material-ui/core/Grid'; import TextField from '@material-ui/core/TextField'; import FormControlLabel from '@material-ui/core/FormControlLabel'; import Checkbox from '@material-ui/core/Checkbox'; import Button from '@material-ui/core/Button'; import withStyles from "@material-ui/core/styles/withStyles"; const styles = theme => ({ layout: { width: 'auto', display: 'block', marginLeft: theme.spacing.unit * 3, marginRight: theme.spacing.unit * 3, [theme.breakpoints.up(600 + theme.spacing.unit * 3 * 2)]: { width: 600, marginLeft: 'auto', marginRight: 'auto', }, }, paper: { padding: theme.spacing.unit * 4, }, }); function Profile(props) { const { classes } = props; return (
Profile } label="Use this address for payment details" />
) } export default withStyles(styles)(Profile);