This commit is contained in:
Takeshi Kimata
2024-02-16 22:11:59 +09:00
parent 291bad6d56
commit d889655324
6 changed files with 39 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
import React from "react";
import Sidebar from "./sidebar";
export default function Main() {
return (
<Sidebar>
{/* ここにページの内容を配置 */}
<div className="p-4">
<h1 className="text-2xl font-bold">Main Content</h1>
<p>This is the main content of the page.</p>
</div>
</Sidebar>
);
}