I do make a style in my react project. Like as
style.css:
.headingStyle {
background-color: purple;
text-align: center;
}
and my react component is:
import React from 'react'
import '../cse_component/style.css'
export default function heardTitle() {
return (
<div>
<h1 ClassName='headingStyle'>Todo List</h1>
</div>
)
}
But why I can not change anything in my project?