import { IShare } from "#entities/files"; import { createSharePageURL } from "#lib/urls"; interface IProps { share: IShare; } export function ShareCard({ share }: IProps) { const { id, name, description, added } = share; return (
{name}
{description}
); }