import React from "react"; import { IHeroProps } from "./interfaces/i-hero-props"; const Hero = ({ alt, src }: IHeroProps) => { return {alt}; }; export { Hero };