umami/src/app/(main)/settings/websites/page.js

10 lines
170 B
JavaScript
Raw Normal View History

2023-10-04 08:46:00 +00:00
import WebsitesDataTable from './WebsitesDataTable';
2023-09-29 12:29:22 +00:00
export default function () {
if (process.env.cloudMode) {
return null;
}
2023-10-04 08:46:00 +00:00
return <WebsitesDataTable />;
2023-09-29 12:29:22 +00:00
}