/** * Functional Component */ type FC> = ( props: React.PropsWithChildren ) => JSX.Element | null; type HTMLElementWithPriority = T & { fetchPriority?: "auto" | "high" | "low"; };