🐘 Massive refactor for graphql changes

This commit is contained in:
2026-03-04 23:42:50 -05:00
parent 4b8d7b5905
commit 74c0d6513c
46 changed files with 10254 additions and 652 deletions

View File

@@ -1,9 +1,11 @@
import React, { ReactElement, useEffect } from "react";
import { Outlet } from "react-router-dom";
import { ApolloProvider } from "@apollo/client/react";
import { Navbar2 } from "./shared/Navbar2";
import { ToastContainer } from "react-toastify";
import "../assets/scss/App.css";
import { useStore } from "../store";
import { apolloClient } from "../graphql/client";
export const App = (): ReactElement => {
useEffect(() => {
@@ -11,11 +13,11 @@ export const App = (): ReactElement => {
}, []);
return (
<>
<ApolloProvider client={apolloClient}>
<Navbar2 />
<Outlet />
<ToastContainer stacked hideProgressBar />
</>
</ApolloProvider>
);
};