+
OpenApiDocsView Placeholder
+
+ {JSON.stringify(props, null, 2)}
+
+
+ )
+}
+
+export default OpenApiDocsView
diff --git a/src/views/open-api-docs-view/server.ts b/src/views/open-api-docs-view/server.ts
new file mode 100644
index 0000000000..aeed6f148d
--- /dev/null
+++ b/src/views/open-api-docs-view/server.ts
@@ -0,0 +1,40 @@
+import { GetStaticPaths, GetStaticProps } from 'next'
+import { OpenApiDocsParams, OpenApiDocsViewProps } from './types'
+
+/**
+ * Get static paths for the view.
+ *
+ * Initially, without versioning, we expect a single page. We use
+ * `getStaticPaths` for flag-based compatibility with the previous template.
+ *
+ * Later, when we implement versioned API docs for the new template,
+ * we'll likely need to retain `getStaticPaths`, using separate paths
+ * for each version of the OpenAPI documents that we detect.
+ */
+export const getStaticPaths: GetStaticPaths