mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
7 lines
277 B
TypeScript
7 lines
277 B
TypeScript
import WebsitesDataTable from 'app/(main)/settings/websites/WebsitesDataTable';
|
|
|
|
export function TeamWebsites({ teamId, allowEdit }: { teamId: string; allowEdit: boolean }) {
|
|
return <WebsitesDataTable teamId={teamId} allowEdit={allowEdit} />;
|
|
}
|
|
|
|
export default TeamWebsites;
|