mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-26 06:34:54 +00:00
10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
import { PageRenderer } from '@/lib/json-ui/page-renderer'
|
|
import lambdaDesignerSchema from '@/config/pages/lambda-designer.json'
|
|
import { PageSchema } from '@/types/json-ui'
|
|
|
|
export function JSONLambdaDesigner() {
|
|
return (
|
|
<PageRenderer schema={lambdaDesignerSchema as PageSchema} />
|
|
)
|
|
}
|