mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
import { Container, Flex, useBreakpointValue } from '@chakra-ui/react';
|
|
import { Settings } from '~/features/settings/Settings';
|
|
|
|
export function SettingsTab() {
|
|
const containerProps = useBreakpointValue({
|
|
base: { p: '0' },
|
|
lg: { p: undefined },
|
|
});
|
|
|
|
return (
|
|
<Container as={Flex} maxW="container.lg" {...containerProps}>
|
|
<Settings />
|
|
</Container>
|
|
);
|
|
}
|