setState hook react code example

Example 1: functional component react with state

import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"  const [count, setCount] = useState(0);
  return (
    

You clicked {count} times

); }

Example 2: usestate hook

import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"  
  const [count, setCount] = useState(0);
  return (
    

You clicked {count} times

); }

Example 3: usestate react

import React, { useState } from 'react';

function Example() {
	
  const [count, setCount] = useState(0);
  
  return (
    

You clicked {count} times

); }

Example 4: usestate react

function Example(props) {
  // You can use Hooks here!
  return 
; }

Tags: