import React from "react"; import "./hero-headline.scss"; interface Props { alt?: string; } const HeroHeadline: React.FC = ({ children, alt }) => (
{children} {alt}
); export default HeroHeadline;