Import updates

This commit is contained in:
Darren Clarke 2023-07-11 13:48:05 +00:00 committed by GitHub
parent 73fdb6e5d1
commit 53514d68cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 85 additions and 90 deletions

View file

@ -5,9 +5,9 @@ import { useTranslate } from "react-polyglot";
import { useRouter, usePathname } from "next/navigation";
import { Box, Grid } from "@mui/material";
import { useCookies } from "react-cookie";
import { useAppContext } from "@/app/_components/AppProvider";
import { PageHeader } from "@/app/_components/PageHeader";
import { VisualizationBuilder } from "@/app/_components/VisualizationBuilder";
import { useAppContext } from "app/_components/AppProvider";
import { PageHeader } from "app/_components/PageHeader";
import { VisualizationBuilder } from "app/_components/VisualizationBuilder";
type CreateProps = {
templates: any;
@ -62,4 +62,3 @@ export const Create: FC<CreateProps> = ({ templates }) => {
</>
);
};