12 lines
448 B
TypeScript
12 lines
448 B
TypeScript
import DeveloperLayout from '@/components/layouts/DeveloperLayout'
|
|
import ComponentManager from '@/views/developerKit/ComponentManager'
|
|
|
|
// 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>
|
|
)
|
|
|
|
export default ComponentEditorPage
|