web/Contexts/AppContext.js

8 lines
133 B
JavaScript
Raw Permalink Normal View History

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