use usestate code example
Example: useState
import React, { useState } from 'react';
function Example() {
const [variable, callforupdate] = useState(defaulttwhatever);// <-- this it
return (
<div></div>
);
}
import React, { useState } from 'react';
function Example() {
const [variable, callforupdate] = useState(defaulttwhatever);// <-- this it
return (
<div></div>
);
}