import state react

JavaScript
import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"
  const [count, setCount] = useState(0);
import React, { useState } from 'react';
Source

Also in JavaScript: