import Script from 'next/script'; import { Schema } from '@markdoc/markdoc'; export const tweet: Schema = { render: 'Tweet', attributes: { url: { type: 'String', required: true, }, }, }; export function Tweet(props: { url: string }) { return ( <>
Loading tweet...> ); }