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

19 lines
392 B
TypeScript
Raw Normal View History

2025-11-25 01:47:56 +07:00
import { FC, ReactNode } from 'react';
import { Outlet } from 'react-router';
import { Navigation } from '../../../components/navigation';
interface TeamLayoutProps {
children?: ReactNode;
}
export const TeamLayout: FC<TeamLayoutProps> = () => {
return (
<div className="min-h-screen bg-gray-50">
<Navigation />
<Outlet />
</div>
);
};
export default TeamLayout;