2023-01-11 23:47:38 +01:00
|
|
|
import AppLayout from 'components/layout/AppLayout';
|
2023-01-10 08:59:26 +01:00
|
|
|
import TestConsole from 'components/pages/console/TestConsole';
|
2020-07-24 04:56:55 +02:00
|
|
|
|
2023-02-28 05:03:04 +01:00
|
|
|
export default function ConsolePage({ disabled }) {
|
|
|
|
if (disabled) {
|
2020-09-27 09:51:29 +02:00
|
|
|
return null;
|
2020-09-18 22:40:46 +02:00
|
|
|
}
|
|
|
|
|
2020-07-24 04:56:55 +02:00
|
|
|
return (
|
2023-01-11 23:47:38 +01:00
|
|
|
<AppLayout>
|
2020-09-29 05:23:42 +02:00
|
|
|
<TestConsole />
|
2023-01-11 23:47:38 +01:00
|
|
|
</AppLayout>
|
2020-07-24 04:56:55 +02:00
|
|
|
);
|
|
|
|
}
|
2022-10-22 06:33:23 +02:00
|
|
|
|
|
|
|
export async function getServerSideProps() {
|
|
|
|
return {
|
2022-10-27 21:14:34 +02:00
|
|
|
props: {
|
2023-02-28 05:03:04 +01:00
|
|
|
disabled: !process.env.ENABLE_TEST_CONSOLE,
|
2022-10-27 21:14:34 +02:00
|
|
|
},
|
2022-10-22 06:33:23 +02:00
|
|
|
};
|
|
|
|
}
|