import type { CellPluginComponentProps } from '@react-page/editor'; import React from 'react'; import { defaultHtml5VideoState } from '../default/state'; import type { Html5VideoState } from '../types/state'; const Html5VideoHtmlRenderer: React.FC< CellPluginComponentProps > = ({ data = defaultHtml5VideoState }) => { return (
); }; export default Html5VideoHtmlRenderer;