umami/pages/test.js

19 lines
369 B
JavaScript
Raw Permalink Normal View History

2020-09-27 07:51:29 +00:00
import React from 'react';
2020-08-07 09:27:12 +00:00
import Layout from 'components/layout/Layout';
import TestConsole from 'components/pages/TestConsole';
2020-09-27 07:51:29 +00:00
import useRequireLogin from 'hooks/useRequireLogin';
2020-07-24 02:56:55 +00:00
2020-09-27 07:51:29 +00:00
export default function TestPage() {
const { loading } = useRequireLogin();
2020-09-27 07:51:29 +00:00
if (loading) {
return null;
2020-09-18 20:40:46 +00:00
}
2020-07-24 02:56:55 +00:00
return (
2020-09-27 07:51:29 +00:00
<Layout>
<TestConsole />
2020-09-27 07:51:29 +00:00
</Layout>
2020-07-24 02:56:55 +00:00
);
}