mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-05 10:35:18 +02:00
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { DisplayForm } from "@/components/display-form"
|
|
|
|
export default function SettingsDisplayPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h3 className="text-lg font-medium">Display</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Turn items on or off to control what's displayed in the app.
|
|
</p>
|
|
</div>
|
|
<Separator />
|
|
<DisplayForm />
|
|
</div>
|
|
)
|
|
}
|