I want to create a simple square using tailwind, but I want to make the class dynamic 
const Design1 = () => { var h = 10; var w = 10; return ( <div className="bg-[#1a1b1a] h-[100vh] w-[100vw] relative "> <BackAndCodeButton /> <div className="flex h-[100vh] items-center justify-center "> <div className={` w-20 h-20 bg-white`}></div> //This one works <div className={` w-${w} h-${h} bg-white`}></div> //but I want it to work this way </div> </div> ); };