2024-02-01 00:58:19 +03:00
|
|
|
import { Fragment } from 'react';
|
|
|
|
import Fabs from './components/fabs';
|
|
|
|
import Badges from './components/badges';
|
|
|
|
import IconButtons from './components/icon-buttons';
|
|
|
|
import Buttons from './components/buttons';
|
|
|
|
import Switches from './components/switches';
|
|
|
|
import Checkboxes from './components/checkboxes';
|
|
|
|
import Radios from './components/radios';
|
|
|
|
import { TextFields } from './components/text-fields';
|
|
|
|
|
2024-01-31 23:46:06 +03:00
|
|
|
export default function Page() {
|
2024-02-01 00:58:19 +03:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
overflowX: 'auto',
|
|
|
|
gap: '0em',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<h1>Google Material You UI kit</h1>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
gap: '0.5em',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Buttons />
|
|
|
|
<IconButtons />
|
|
|
|
<Switches />
|
|
|
|
<Checkboxes />
|
|
|
|
<Radios />
|
|
|
|
<TextFields />
|
|
|
|
<Fabs />
|
|
|
|
<Badges />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Fragment>
|
|
|
|
);
|
2024-01-31 23:46:06 +03:00
|
|
|
}
|