19 lines
417 B
TypeScript
19 lines
417 B
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
|
|
import { SiteHeader } from "../site-header"
|
|
import { ScrollArea } from "@/components/ui/scroll-area"
|
|
import Control from "./control"
|
|
|
|
export default function ControlPanel() {
|
|
|
|
|
|
return (
|
|
<div>
|
|
<SiteHeader breadcrumbs={[{ label: "Home", href: "/" }, { label: "Settings", href: "/admin/common" }]} />
|
|
<Control />
|
|
</div>
|
|
)
|
|
}
|