umami/pages/index.js

19 lines
332 B
JavaScript
Raw Normal View History

2020-07-17 08:03:38 +00:00
import React from 'react';
2020-07-24 02:56:55 +00:00
import Layout from 'components/Layout';
2020-08-05 05:45:05 +00:00
import WebsiteList from 'components/WebsiteList';
import useUser from 'hooks/useUser';
export default function HomePage() {
const { loading } = useUser();
if (loading) {
return null;
}
2020-07-17 08:03:38 +00:00
return (
<Layout>
<WebsiteList />
2020-07-17 08:03:38 +00:00
</Layout>
);
}