run prettier

Signed-off-by: luccas <luccasmtxr@gmail.com>
This commit is contained in:
luccas
2024-11-05 15:02:02 -03:00
parent 4ead5772a5
commit 69a66d9661
+5 -2
View File
@@ -371,7 +371,7 @@ export const apis: AnyApiFactory[] = [
]
```
### Pagination
### Pagination
You can add pagination support to `ApiExplorerPage` extension.
@@ -382,7 +382,10 @@ This is an example:
import { ApiExplorerPage } from '@backstage/plugin-api-docs';
<Route path="/api-docs" element={<ApiExplorerPage pagination={{ mode: 'offset', limit: 20 }} />} />;
<Route
path="/api-docs"
element={<ApiExplorerPage pagination={{ mode: 'offset', limit: 20 }} />}
/>;
```
## Links