import React, { useState } from 'react' const Component = (): JSX.Element => { const [count, setCount] = useState(0) return ( <>

IntelliJ IDEA

What is IntelliJ IDEA? · Α
{count}
) } export default Component