sozsoft-platform/ui/src/views/developerKit/ComponentEditorPage.tsx

13 lines
448 B
TypeScript
Raw Normal View History

2026-02-24 20:44:16 +00:00
import DeveloperLayout from '@/components/layouts/DeveloperLayout'
2026-08-06 13:17:59 +00:00
import ComponentManager from '@/views/developerKit/ComponentManager'
2026-02-24 20:44:16 +00:00
2026-08-06 13:17:59 +00:00
// Existing dynamic-route records can still reference this physical module.
// Keep the compatibility entry point, but manage create/view operations in the manager modal.
const ComponentEditorPage = () => (
<DeveloperLayout>
<ComponentManager />
</DeveloperLayout>
)
2026-02-24 20:44:16 +00:00
2026-03-01 20:43:25 +00:00
export default ComponentEditorPage