import React, { createContext, useState } from 'react' const AuthenticationContext = createContext({}) const AuthenticationProvider = ({ children }) => { const [isLoggedIn, setIsLoggedIn] = useState(false) const [userProfile, setUserProfile] = useState({}) return ( {children} ) } export { AuthenticationContext, AuthenticationProvider } // export default AuthenticationProvider;