UNPKG

sunmao-sdk

Version:

榫卯-开箱即用赋能-sdk

13 lines (11 loc) 300 B
import React from "react"; export default function html({ value, schema, ...rest }) { let __html = ""; try { __html = value ? value : schema.default; if (typeof __html !== "string") { __html = ""; } } catch (error) {} return <div dangerouslySetInnerHTML={{ __html }} />; }