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

6 lines
173 B
TypeScript
Raw Normal View History

2024-02-05 03:53:06 +00:00
import TeamProvider from './TeamProvider';
2024-02-03 06:30:01 +00:00
2024-02-05 04:09:46 +00:00
export default function ({ children, params: { teamId } }) {
return <TeamProvider teamId={teamId}>{children}</TeamProvider>;
2024-02-03 06:30:01 +00:00
}