import React, { ImgHTMLAttributes } from "react" export type HeroProps = { imageProps: ImgHTMLAttributes } export const Hero: React.FC = ({ imageProps }) => (
Snapshot
)