adding in the actions in header
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import Realm from 'realm';
|
||||
|
||||
interface IAuthContext {
|
||||
user?: Realm.User;
|
||||
}
|
||||
|
||||
const AuthContext = React.createContext<IAuthContext>({});
|
||||
|
||||
const AuthProvider = ({ children }: { children: React.ReactNode }) => {
|
||||
return <AuthContext.Provider value={{}}>{children}</AuthContext.Provider>;
|
||||
};
|
||||
Reference in New Issue
Block a user