From e010c1d3bd987337cdc1aeca59bfae837a86f6f7 Mon Sep 17 00:00:00 2001 From: Henry Fontanier Date: Wed, 6 Sep 2023 17:56:47 +0200 Subject: [PATCH] tmp --- .../w/[wId]/builder/assistants/index.tsx | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 front/pages/w/[wId]/builder/assistants/index.tsx diff --git a/front/pages/w/[wId]/builder/assistants/index.tsx b/front/pages/w/[wId]/builder/assistants/index.tsx new file mode 100644 index 0000000000000..faaf1b69b8e5a --- /dev/null +++ b/front/pages/w/[wId]/builder/assistants/index.tsx @@ -0,0 +1,20 @@ +import { GetServerSideProps, InferGetServerSidePropsType } from "next"; +import { useRouter } from "next/router"; + +import AppLayout from "@app/components/sparkle/AppLayout"; + +export const getServerSideProps: GetServerSideProps<{ + // no droids +}> = async (context) => { + return { + props: {}, + }; +}; + +export default function AssistantsBuilder( + props: InferGetServerSidePropsType +) { + const router = useRouter(); + + return
Assistants Builder
; +}