피드백 등록 및 리스트업.

This commit is contained in:
2025-07-30 18:11:01 +09:00
parent ba9b7a27ef
commit e2cb482e5c
28 changed files with 1942 additions and 498 deletions

View File

@@ -0,0 +1,18 @@
// src/components/MainLayout.tsx
import { Link, Outlet, useParams } from "react-router-dom";
import { Button } from "@/components/ui/button";
export function MainLayout() {
const { projectId, channelId } = useParams();
return (
<div className="container mx-auto p-4 md:p-8">
<header className="mb-8 flex justify-between items-center">
<h1 className="text-3xl font-bold tracking-tight"> </h1>
</header>
<main>
<Outlet />
</main>
</div>
);
}