blob: f5f3acaaa0ac81e2e62615d2c236f20062a9e30d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export default {
MuiFormControl: {
defaultProps: {
size: 'small',
},
},
MuiSnackbar: {
defaultProps: {
anchorOrigin: {
vertical: 'bottom',
horizontal: 'center',
},
},
},
};
|