import * as React from "react"; // @ts-ignore const { Table } = window.antd; export default function renderProperty({ properties }) { if (!properties) { return null; } const { props = {} } = properties; const dateSource = (Object.values(props) as any).map(val => { if (!!val.defaultValue) { val.defaultValue.value = `${val.defaultValue.value}`; } return val; }); return ( <> Props
); }