mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
8 lines
277 B
TypeScript
8 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;
|