Skip to content

Instantly share code, notes, and snippets.

@marvinjude
Created April 1, 2019 07:05
Show Gist options
  • Select an option

  • Save marvinjude/1a996bbf0fc2312cb1ca2adf3375dcb4 to your computer and use it in GitHub Desktop.

Select an option

Save marvinjude/1a996bbf0fc2312cb1ca2adf3375dcb4 to your computer and use it in GitHub Desktop.
function Example(){
//Scenerio A
let[name, setUser] = useState('')
let[age, setAge] = useState('')
let[school, setSchool] = useState('')
let[height, setHeight] = useState('')
//Scenerio B
let [data, setData] = useState({
name: "Agboola Jude",
age: "40",
school: "New Orleans High",
height: "49M"
//...
//...
///...
//..
//..
})
return(
//use state here
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment