I have an issue. When coding in ReactJS the Tailwindcss effects are not working as expected. Actually the message "Welcome to Ecommerce" is displayed but the background is blank but the colors added in the code is not displayed. I tried to fix any Tailwindcss issue by typing this command: npx tailwindcss -i ./src/index.css -o ./src/output.css --watch but this warning below is coming up:
warn - No utility classes were detected in your source files. If this is unexpected, double-check the content option in your Tailwind CSS configuration.
warn - https://tailwindcss.com/docs/content-configuration
import React from 'react'
const Register = () => {
return(
<div classname= 'min-w-screen min-h-screen bg-[#241b70] flex justify-center items-center'>
<div classname= 'w-[350px] text-[#ffffff] p-2'>
<div classname= 'bg-[#6f68d1] p-4 rounded-md'>
<h2 classname='text-x1 mb-3 font-bold'>Welcome to Ecommerce</h2>
</div>
</div>
</div>
)
}
export default Register;
Also, when adding the index.css file into index.js file is not recognized; I think the Register Page's background is blank. Also I have added into Index.html but I do not know if this is wrong.. Please find 
What I am looking for is to dislay the structure and colors added into the code. Your response will be greatfully helpful. Thank you very appreciated.


contentfile globs in the Tailwind configuration sufficiently cover the file that contains theRegistercomponent.