mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
import { Box } from "@mantine/core"
|
|
import { RedocStandalone } from "redoc"
|
|
|
|
function ApiDocumentationPage() {
|
|
return (
|
|
// force white background because documentation does not support dark theme
|
|
<Box style={{ backgroundColor: "#fff" }}>
|
|
<RedocStandalone specUrl="openapi/openapi.json" />
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default ApiDocumentationPage
|