Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Created April 20, 2019 22:34
Show Gist options
  • Save treyhuffine/c677ccb1e9b040a7020b254e491132d8 to your computer and use it in GitHub Desktop.
Save treyhuffine/c677ccb1e9b040a7020b254e491132d8 to your computer and use it in GitHub Desktop.
const App = () => {
const [id, setId] = React.useState(42);
const handleIdChange = React.useCallback(newId => {
setId(newId);
}, []);
return (
<div className="App">
<LaunchList handleIdChange={handleIdChange} />
<LaunchProfile id={id} />
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment