import { useState } from 'react' //import Card from "./Card.jsx" //import reactLogo from './assets/react.svg' //import viteLogo from '/vite.svg' import './App.css' function App() { const [count, setCount] = useState(6677) // The below function create and return random hex const setBg = () => { return("#"+Math.floor(Math.random()*16777215).toString(16)) } return ( <> // here calling the state

TESTSATHI EXAM {count}

//button onclick change the state update the random hex to change the color ) } export default App