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