import { FC } from "react"; interface Props { url: string; } const Pdf: FC = ({ url }) => { return (
); }; export default Pdf;