Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanierh committed Sep 6, 2023
1 parent 91d17ad commit e010c1d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions front/pages/w/[wId]/builder/assistants/index.tsx
Original file line number Diff line number Diff line change
@@ -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<typeof getServerSideProps>
) {
const router = useRouter();

return <div>Assistants Builder</div>;
}

0 comments on commit e010c1d

Please sign in to comment.