Rendering From String
const SuperHeader = ({ text }) => `
<div>
<h1>${text}</h1>
<h3>It's Superpowered!</h3>
</div>
`;Last updated
Was this helpful?
const SuperHeader = ({ text }) => `
<div>
<h1>${text}</h1>
<h3>It's Superpowered!</h3>
</div>
`;Last updated
Was this helpful?
Was this helpful?