mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
15 lines
269 B
JavaScript
15 lines
269 B
JavaScript
import WebsitesDataTable from './WebsitesDataTable';
|
|
import WebsitesHeader from './WebsitesHeader';
|
|
|
|
export default function () {
|
|
if (process.env.cloudMode) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<WebsitesHeader />
|
|
<WebsitesDataTable />
|
|
</>
|
|
);
|
|
}
|