umami/pages/test.js

19 lines
369 B
JavaScript
Raw Normal View History

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