Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save djD-REK/5f29d744e06b08f2bb7d54be971b3cfa to your computer and use it in GitHub Desktop.

Select an option

Save djD-REK/5f29d744e06b08f2bb7d54be971b3cfa to your computer and use it in GitHub Desktop.
import React, { useState } from "react"
import ReactDOM from "react-dom"
function App() {
// React Hooks declarations
const [searches, setSearches] = useState([])
const [query, setQuery] = useState("")
const handleClick = () => {
// Save search term state to React Hooks
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment