mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 07:07:17 +01:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
import WebsitesDataTable from './WebsitesDataTable';
|
|
|
|
export default function () {
|
|
if (process.env.cloudMode) {
|
|
return null;
|
|
}
|
|
|
|
return <WebsitesDataTable />;
|
|
}
|