mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 02:55:38 +01:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import WebsitesDataTable from 'app/(main)/settings/websites/WebsitesDataTable';
|
|
|
|
export function TeamWebsites({ teamId }: { teamId: string; readOnly: boolean }) {
|
|
return <WebsitesDataTable teamId={teamId} />;
|
|
}
|
|
|
|
export default TeamWebsites;
|