Skip to content
Snippets Groups Projects
Grandma.tsx 266 B
Newer Older
function Grandma(props: any) {
  const grandmaInfo: String = props.grandmaInfo;

  return (
    <div>
      <img src="../../public/recources/images/Grandma.png"></img>
      <div className="grandmaInfo">{grandmaInfo}</div>
    </div>
  );
}

export default Grandma;