Componente de función real reactjs

const ExampleComponent = (props) => {
    const [stateVariable, setStateVariable] = useState('');

    return (
        <div>
            <h1>This is a function component view</h1>
        </div>
    )
}
Junior Grepper