Skip to content

Commit f5f1527

Browse files
committed
Prettier MUI playground
1 parent 6274078 commit f5f1527

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/integration/next/pages/mui.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@ export default function Mui() {
9797
inputProps={{ 'aria-label': 'controlled' }}
9898
/>} label="Dark mode" />
9999

100-
<Typography sx={{ mt: 7 }} variant="h4">
100+
<Typography sx={{ mt: 2 }} variant="h4">
101101
This is a place for testing MUI components
102102
</Typography>
103-
<ComboBox />
103+
<DataGridDemo />
104104
<BasicButtons />
105+
<ComboBox />
105106
<BasicChips />
106107
<IconMenu />
107108
<MaterialUIPickers />
108109
<BadgeVisibility />
109110
<HorizontalLinearStepper />
110-
<DataGridDemo />
111111
<Links />
112112
<RecipeReviewCard />
113113
</>
@@ -277,16 +277,18 @@ const { ComboBox } = (() => {
277277
function BasicButtons() {
278278
return (
279279
<>
280-
<Stack spacing={2} direction="row" sx={{ mt: 7 }}>
280+
<Stack spacing={2} direction="row" sx={{ mt: 2 }}>
281281
<Button variant="text">Text</Button>
282282
<Button variant="contained">Contained</Button>
283283
<Button variant="outlined">Outlined</Button>
284284
</Stack>
285+
{/*
285286
<Stack spacing={2} direction="row" sx={{ mt: 7 }}>
286287
<Button color="secondary">Secondary</Button>
287288
<Button color="secondary" variant="contained">Secondary contained</Button>
288289
<Button color="secondary" variant="outlined">Secondary contained</Button>
289290
</Stack>
291+
*/}
290292
<Stack spacing={2} direction="row" sx={{ mt: 7 }}>
291293
<Button color="success">Success</Button>
292294
<Button color="success" variant="contained">Success contained</Button>

0 commit comments

Comments
 (0)