msd-d / PetHub

An app for animal adoption.
1 stars 0 forks source link

Login system #35

Closed Kechr closed 2 years ago

Kechr commented 2 years ago

Added proof of concept login system and global state for userID.

// Access global state
import AppContext from "../AppContext";
const myContext = useContext(AppContext);
myContext.userID

// Update global state
myContext.updateUserID(username);