s
This commit is contained in:
22
app/settings/page.tsx
Normal file
22
app/settings/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
import { Label } from '@/components/ui/label';
|
||||
import { Select, SelectTrigger, SelectContent, SelectItem, SelectValue } from '@/components/ui/select';
|
||||
|
||||
const SettingsPage = () => {
|
||||
return (
|
||||
<div className="container mx-auto p-4">
|
||||
<Label>Theme</Label>
|
||||
<Select>
|
||||
<SelectTrigger>
|
||||
<SelectValue>Light</SelectValue>
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="light">Light</SelectItem>
|
||||
<SelectItem value="dark">Dark</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SettingsPage;
|
||||
Reference in New Issue
Block a user