/
Mihaham
/
Table-Time
Обзор
Документация
Войти
/
Mihaham
/
Table-Time
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
apps/web/components/admin/AdminLayoutClient.tsx
12 строк
338 B
MihahamYT
feat: dedicated web panels for all 46 games
14 июн 2026, 21:36
14 июн 2026, 21:36
4e11c3f
Код
Авторство
О чём код?
"use client"; import { usePathname } from "next/navigation"; import { AdminShell } from "./AdminShell"; export function AdminLayoutClient({ children }: { children: React.ReactNode }) { const pathname = usePathname(); if (pathname === "/admin/login") { return <>{children}</>; } return <AdminShell>{children}</AdminShell>; }