import type { ReactNode } from 'react';
const navItems = ['소개', '게시판', '자료실', '마이페이지'];
function UserHeader() {
return (
);
}
function UserSideMenu() {
return (
);
}
type UserLayoutProps = {
children: ReactNode;
title?: string;
};
export function UserLayout({ children, title = '공지사항' }: UserLayoutProps) {
return (
);
}