mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-31 02:13:21 +02:00
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import Container from '@mui/material/Container';
|
|
import withStyles from '@mui/styles/withStyles';
|
|
|
|
const FormContainer = withStyles({
|
|
root: {
|
|
padding: '20px 10px 0px 20px',
|
|
maxWidth: '380px',
|
|
textAlign: 'center',
|
|
},
|
|
})(Container);
|
|
|
|
export default FormContainer;
|