web/Contexts/AppContext.js

8 lines
133 B
JavaScript
Raw Permalink Normal View History

2024-02-05 01:40:57 +03:30
"use client";
import { createContext } from "react";
const AppContext = createContext({
state: {},
});
export default AppContext;