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';
|
2020-08-06 02:04:02 +00:00
|
|
|
import useRequireLogin from 'hooks/useRequireLogin';
|
2020-08-05 05:45:05 +00:00
|
|
|
|
|
|
|
|
export default function HomePage() {
|
2020-08-06 02:04:02 +00:00
|
|
|
const { loading } = useRequireLogin();
|
2020-08-05 05:45:05 +00:00
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-07-17 08:03:38 +00:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Layout>
|
2020-07-28 08:17:45 +00:00
|
|
|
<WebsiteList />
|
2020-07-17 08:03:38 +00:00
|
|
|
</Layout>
|
|
|
|
|
);
|
|
|
|
|
}
|