Files
imphnen-frontend-service/apps/hackathon/src/app/users/[userId]/layout.tsx
T

19 lines
392 B
TypeScript
Raw Normal View History

2025-11-26 10:18:36 +07:00
import { FC, ReactNode } from 'react';
import { Outlet } from 'react-router';
import { Navigation } from '../../../components/navigation';
interface UserLayoutProps {
children?: ReactNode;
}
export const UserLayout: FC<UserLayoutProps> = () => {
return (
<div className="min-h-screen bg-gray-50">
<Navigation />
<Outlet />
</div>
);
};
export default UserLayout;