将以下 CSS 样式内联添加到 <h1> 元素
background-color = "yellow"
const Header = () => {
return (
<>
<h1 style=@(29)>Hello Style!</h1>
<p>Add a little style!</p>
</>
);
}
const Header = () => {
return (
<>
<h1 style={{backgroundColor: "yellow"}}>Hello Style!</h1>
<p>Add a little style!</p>
</>
);
}
const Header = () => {
return (
<>
<h1 style={{backgroundColor: 'yellow'}}>Hello Style!</h1>
<p>Add a little style!</p>
</>
);
}
const Header = () => {
return (
<>
<h1 style={{backgroundColor:"yellow"}}>Hello Style!</h1>
<p>Add a little style!</p>
</>
);
}
const Header = () => {
return (
<>
<h1 style={{backgroundColor:'yellow'}}>Hello Style!</h1>
<p>Add a little style!</p>
</>
);
}