import { useState } from "react"; import AuthContext from "./authContext"; const AuthContextProvider = ({ children }) => { const [user, setUser] = useState({ token: null, userId: null, currentProjectId: null, }); return ( {children} ); } export default AuthContextProvider;