mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-20 11:56:38 +00:00
18 lines
501 B
TypeScript
18 lines
501 B
TypeScript
import { Separator } from "@/components/ui/separator"
|
|
import { DisplayForm } from "@/app/configuration/display/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>
|
|
)
|
|
}
|