umami/src/app/(main)/teams/[teamId]/layout.tsx

6 lines
173 B
TypeScript
Raw Normal View History

2024-02-07 18:27:23 +00:00
import TeamProvider from './TeamProvider';
2024-02-07 04:01:38 +00:00
export default function ({ children, params: { teamId } }) {
return <TeamProvider teamId={teamId}>{children}</TeamProvider>;
}