Files
low-code-react-app-b/src/components/JSONStyleDesigner.tsx

7 lines
283 B
TypeScript

import { JSONPageRenderer, ComponentRendererProps } from './JSONPageRenderer'
import styleDesignerConfig from '@/config/pages/style-designer.json'
export function JSONStyleDesigner() {
return <JSONPageRenderer schema={styleDesignerConfig as ComponentRendererProps['schema']} />
}