strapi-plugin-oembed
Version:
Embed content from third-party sites in Strapi
8 lines (7 loc) • 313 B
TypeScript
import { type Oembed } from '@/shared/types/oembed';
import { type InputCallback } from '../Input';
export type InputOembedCardProps = {
entry: Oembed;
onImport: InputCallback;
};
export default function InputOembedCard({ entry, onImport }: InputOembedCardProps): import("react/jsx-runtime").JSX.Element;