const [state, setState] = useState(-1);
map((data, index) => (
<Grid
onClick={() => setState(index)}
style={{
background: state === index ? 'lightblue' : 'white'
}}
>
))
const [state, setState] = useState(-1);
map((data, index) => (
<Grid
onClick={() => setState(index)}
style={{
background: state === index ? 'lightblue' : 'white'
}}
>
))