import { DataComponent as DC } from '../runtime'; import { InlineConnector } from '../spec'; export type InlineOptions = Omit; export const Inline: DC = (options) => { const { value } = options; return () => value; }; Inline.props = {};