Skip to content
Snippets Groups Projects

Sort + Search UI

Merged Yusuf Akgül requested to merge sortSearch into main
14 files
+ 744
22
Compare changes
  • Side-by-side
  • Inline
Files
14
"use client"
export default function DashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<section>
<div>
{children}
</div>
</section>
);
}
\ No newline at end of file
Loading