diff --git a/frontend/src/components/AppContext.tsx b/frontend/src/components/AppContext.tsx
new file mode 100644
index 0000000..ecf712b
--- /dev/null
+++ b/frontend/src/components/AppContext.tsx
@@ -0,0 +1,19 @@
+import {createContext, ReactNode, useContext} from "react";
+
+export default function AppContext({
+ children,
+}: {
+ children: ReactNode;
+}) {
+ return (
+ ()}>
+ {children}
+
+ );
+}
+
+const context = createContext