Skip to content

Instantly share code, notes, and snippets.

@jacobdo2
Created November 6, 2020 15:05
Show Gist options
  • Save jacobdo2/4211621908af39fbf491ddca055374f6 to your computer and use it in GitHub Desktop.
Save jacobdo2/4211621908af39fbf491ddca055374f6 to your computer and use it in GitHub Desktop.
import React from "react";
export default function SearchPage() {
const [inputValue, setInputValue] = React.useState("");
return (
<input
type="text"
value={inputValue}
onChange={(e) => setInputValue(e.target.value)}
/>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment