mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-01 16:44:24 +00:00
18 lines
509 B
TypeScript
18 lines
509 B
TypeScript
import { Separator } from "@/registry/new-york/ui/separator"
|
|
import { DisplayForm } from "@/app/examples/forms/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>
|
|
)
|
|
}
|