import { FC } from "react"; import { IText } from "../../../utils/types/text"; import { PG } from "../logic/global"; import { LRender } from "./l-render"; export const LText: FC<{ id: string; fromProp?: boolean; _scopeIndex?: Record; }> = ({ id, fromProp, _scopeIndex }) => { return ; }; export const LTextInternal: FC<{ className: any; p: PG; item: IText; _children: any; }> = ({ className, item, _children }) => { return (
); };