10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
import Sidebar from "./components/Sidebar"
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Sidebar/>
|
|
</main>
|
|
);
|
|
}
|