mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
19 lines
368 B
JavaScript
19 lines
368 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout/Layout';
|
|
import WebsiteList from 'components/WebsiteList';
|
|
import useRequireLogin from 'hooks/useRequireLogin';
|
|
|
|
export default function DashboardPage() {
|
|
const { loading } = useRequireLogin();
|
|
|
|
if (loading) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Layout>
|
|
<WebsiteList />
|
|
</Layout>
|
|
);
|
|
}
|