Skip to content

Instantly share code, notes, and snippets.

@eh3rrera
Created May 2, 2019 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eh3rrera/826fb0ca31c73c0c8d202e9420a01c02 to your computer and use it in GitHub Desktop.
Save eh3rrera/826fb0ca31c73c0c8d202e9420a01c02 to your computer and use it in GitHub Desktop.
import React, { useState } from 'react';
// ...
function App() {
if(1 !== 0) {
const [count, setCount] = useState(0);
}
return (
/* ... */
);
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment