aboutsummaryrefslogtreecommitdiff
path: root/apps/web/src/app/ui/page.tsx
blob: 2f7c6a4be24f78cbd5ce82f7425fc279a4c94055 (plain) (blame)
1
2
3
4
5
6
7
8
9
import Sidebar from "@/components/Sidebar";

export default async function Home() {
  return (
    <>
      <Sidebar />
    </>
  );
}