Add changelog for version 3.0.0

This commit is contained in:
dennis.ludwig
2021-07-02 14:47:24 +02:00
parent 7d49be0c0a
commit 291b553618
2 changed files with 2 additions and 3 deletions

View File

@@ -7,8 +7,7 @@ interface Props {
const HeroHeadline: React.FC<Props> = ({ children, alt }) => (
<div className="hero-headline">
{children}
<span className="hero-headline__alt">{alt}</span>
{children} <span className="hero-headline__alt">{alt}</span>
</div>
);