-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
BASICBasic CheatsheetBasic Cheatsheet
Description
What cheatsheet is this about? (if applicable)
Basic cheatsheet
What's your issue or idea?
Idea
instead of:
const [user, setUser] = React.useState<IUser | null>(null);
// later...
setUser(newUser);
you can use:
const [user, setUser] = React.useState<IUser>({} as IUser);
// later...
setUser(newUser);
(of course if IUser is an object)
its always great to start the state using its initial format
Metadata
Metadata
Assignees
Labels
BASICBasic CheatsheetBasic Cheatsheet