const Hello = ({ title }: HelloProps) => {
  return <StyledHello className="hello">Hello Component {title}</StyledHello>;
};