import { Title, Drawer, Tabs, ScrollArea } from '@mantine/core';
import { useTranslation } from 'next-i18next';
import CustomizationSettings from './Customization/CustomizationSettings';
import CommonSettings from './Common/CommonSettings';
import Credits from './Common/Credits';
function SettingsMenu() {
const { t } = useTranslation('settings/common');
return (
{t('tabs.common')}
{t('tabs.customizations')}
);
}
interface SettingsDrawerProps {
opened: boolean;
closeDrawer: () => void;
}
export function SettingsDrawer({ opened, closeDrawer }: SettingsDrawerProps) {
const { t } = useTranslation('settings/common');
return (
{t('title')}}
opened={opened}
onClose={closeDrawer}
>
);
}