eventdata api

This commit is contained in:
Brian Cao 2022-10-18 15:54:17 -07:00
parent b948f0d381
commit 67394194af
9 changed files with 230 additions and 14 deletions

View file

@ -18,3 +18,9 @@ export default function ConsolePage({ enabled }) {
</Layout>
);
}
export async function getServerSideProps() {
return {
props: { enabled: !!process.env.ENABLE_TEST_CONSOLE },
};
}