react js state code example

Example 1: state with react functions

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: state with react functions

class Example extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    };
  }

  render() {
    return (
      

You clicked {this.state.count} times

); } }

Example 3: what is state in react

// State is essentially a global class variable
// that is modified when the component updates

class Clock extends React.Component {
  constructor(props) {
    super(props);
    this.state = {date: new Date()};
  }

  render() {
    return (
      

Hello, world!

It is {this.state.date.toLocaleTimeString()}.

); } }

Example 4: react function called last state

this.setState({
    someState: obj
}, () => {
    this.afterSetStateFinished();
});

Example 5: reading state react

const Example = (props) => {
  // You can use Hooks here!
  return 
; }

Example 6: reactjs update state example

{
  hasBeenClicked: false,
  currentTheme: 'bluesss',
}s

Tags: