import React from 'react'
export default function Home(){
return<div>
<h1 className="bg-dark text-white p-3">Home Page</h1>
</div>
}
I am attempting to modify the background color of the h1 tag in my React project. Despite successfully importing Bootstrap and testing a button that works fine, I am encountering issues with changing the h1 tag's background color. Can anyone provide me with some guidance on this matter?