mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-11 23:04:40 +02:00
Handle web player
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
import { Select, Stack } from '@mantine/core';
|
||||
import { SettingsOptions } from '@/renderer/features/settings/components/settings-option';
|
||||
|
||||
export const GeneralTab = () => {
|
||||
const options = [
|
||||
{
|
||||
control: <Select disabled data={[]} />,
|
||||
description: 'Primary application language ',
|
||||
title: 'Language',
|
||||
},
|
||||
{
|
||||
control: <Select disabled data={[]} />,
|
||||
description: 'Theme for the application',
|
||||
title: 'Theme',
|
||||
},
|
||||
{
|
||||
control: <Select disabled data={[]} />,
|
||||
description: 'Font for the application',
|
||||
title: 'Font',
|
||||
},
|
||||
{
|
||||
control: (
|
||||
<Select disabled data={['Windows', 'macOS']} defaultValue="Windows" />
|
||||
),
|
||||
description: 'Font for the application',
|
||||
title: 'Titlebar style',
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<Stack mt="1rem" spacing="xl">
|
||||
{options.map((option) => (
|
||||
<SettingsOptions key={`general-${option.title}`} {...option} />
|
||||
))}
|
||||
</Stack>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user