um-react/src/tabs/SettingsTab.tsx

16 lines
383 B
TypeScript
Raw Normal View History

2023-06-09 23:45:41 +00:00
import { Container, Flex, useBreakpointValue } from '@chakra-ui/react';
2023-06-09 22:11:30 +00:00
import { Settings } from '~/features/settings/Settings';
export function SettingsTab() {
2023-06-09 23:45:41 +00:00
const containerProps = useBreakpointValue({
base: { p: '0' },
lg: { p: undefined },
});
return (
2023-06-09 23:45:41 +00:00
<Container as={Flex} maxW="container.lg" {...containerProps}>
2023-06-09 22:11:30 +00:00
<Settings />
</Container>
);
}