EndpointManager
This commit is contained in:
parent
05b9f5f4a8
commit
8daf982119
2 changed files with 4 additions and 4 deletions
|
|
@ -45,7 +45,7 @@ interface ParameterInput {
|
||||||
description?: string
|
description?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
const ApiManager: React.FC = () => {
|
const EndpointManager: React.FC = () => {
|
||||||
const { generatedEndpoints } = useEntities()
|
const { generatedEndpoints } = useEntities()
|
||||||
const { translate } = useLocalization()
|
const { translate } = useLocalization()
|
||||||
|
|
||||||
|
|
@ -791,4 +791,4 @@ const ApiManager: React.FC = () => {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ApiManager
|
export default EndpointManager
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { EntityProvider } from '@/contexts/EntityContext'
|
import { EntityProvider } from '@/contexts/EntityContext'
|
||||||
import ApiManager from '@/components/developerKit/ApiManager'
|
|
||||||
import DeveloperLayout from '@/components/layouts/DeveloperLayout'
|
import DeveloperLayout from '@/components/layouts/DeveloperLayout'
|
||||||
|
import EndpointManager from '@/components/developerKit/EndpointManager'
|
||||||
|
|
||||||
const EndpointPage: React.FC = () => {
|
const EndpointPage: React.FC = () => {
|
||||||
return (
|
return (
|
||||||
<DeveloperLayout>
|
<DeveloperLayout>
|
||||||
<EntityProvider>
|
<EntityProvider>
|
||||||
<ApiManager />
|
<EndpointManager />
|
||||||
</EntityProvider>
|
</EntityProvider>
|
||||||
</DeveloperLayout>
|
</DeveloperLayout>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue