Skip to content

Instantly share code, notes, and snippets.

@Sheraff
Last active June 26, 2021 15:05
Show Gist options
  • Save Sheraff/1c1d608bfd70ffd4dc5dea136faaa8b9 to your computer and use it in GitHub Desktop.
Save Sheraff/1c1d608bfd70ffd4dc5dea136faaa8b9 to your computer and use it in GitHub Desktop.
Stack Overflow code snippet with React hooks
const App = (props) => {
  var [count, setCount] = React.useState(0)

  return ( 
    <span>{count}</span>
  )
}

ReactDOM.render(<App/>, document.getElementById("root"))
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.14.0/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.14.0/umd/react-dom.production.min.js"></script>
<div id="root"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment