11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import {SidebarGroupLabel} from "@/components/ui/sidebar";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<SidebarGroupLabel>Documents</SidebarGroupLabel>
|
|
Settings
|
|
</div>
|
|
);
|
|
}
|