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