| Property | Type | Required | Default | Description |
|---|---|---|---|---|
maxLength |
number |
✅ | - | max length of text to render as markdown |
text |
string |
✅ | - | raw text to render as markdown |
import { RtkMarkdownView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkMarkdownView />;
}import { RtkMarkdownView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkMarkdownView
maxLength={42}
text="example"
/>
);
}