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

8 lines
243 B
TypeScript
Raw Normal View History

2024-01-29 02:33:40 +00:00
import WebsitesDataTable from 'app/(main)/settings/websites/WebsitesDataTable';
2023-01-25 15:42:46 +00:00
2024-01-19 23:06:09 +00:00
export function TeamWebsites({ teamId }: { teamId: string; readOnly: boolean }) {
2024-01-29 02:33:40 +00:00
return <WebsitesDataTable teamId={teamId} />;
2023-01-25 15:42:46 +00:00
}
2023-04-21 15:00:42 +00:00
export default TeamWebsites;