Skip to content
Snippets Groups Projects

Persistance

Closed BRUA HUGO requested to merge persistance into main
Compare and
15 files
+ 3731
3198
Preferences
Compare changes
Files
15
+ 11
0
import React from 'react';
interface AuthContextType {
user: any;
signin: (user: string, callback: VoidFunction) => void;
signout: (callback: VoidFunction) => void;
};
const AuthContext = React.createContext<AuthContextType>(null!);
export { AuthContext };
\ No newline at end of file