import './App.css'; import { useState } from 'react'; function Square() { const [value, setValue] = useState(null); function handleClick() { setValue('X') } return ( {value} ); } function App() { return ( <>