1
0
forked from baron/baron-sso

클라이언트 목록 및 상세 화면에 복사 피드백 적용

This commit is contained in:
2026-02-02 16:02:53 +09:00
parent a01ebfd143
commit fb2541cb09
3 changed files with 24 additions and 25 deletions

View File

@@ -1,6 +1,7 @@
import { BadgeCheck, Moon, ShieldHalf, Sun } from "lucide-react";
import { useEffect, useState } from "react";
import { NavLink, Outlet } from "react-router-dom";
import { Toaster } from "../ui/toaster";
const navItems = [{ label: "Clients", to: "/clients", icon: ShieldHalf }];
@@ -105,6 +106,7 @@ function AppLayout() {
<Outlet />
</main>
</div>
<Toaster />
</div>
);
}