Files
commafeed/commafeed-client/src/pages/app/ApiDocumentationPage.tsx

9 lines
216 B
TypeScript
Raw Normal View History

2022-08-22 14:49:24 +02:00
import SwaggerUI from "swagger-ui-react"
import "swagger-ui-react/swagger-ui.css"
2022-08-15 15:42:56 +02:00
2022-08-22 14:49:24 +02:00
function ApiDocumentationPage() {
return <SwaggerUI url="swagger/swagger.json" />
2022-08-15 15:42:56 +02:00
}
2022-08-22 14:49:24 +02:00
export default ApiDocumentationPage