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