Explorar el Código

Create detail-page.js

Stefan Pejcic hace 1 año
padre
commit
da05e6b182
Se han modificado 1 ficheros con 21 adiciones y 0 borrados
  1. 21 0
      documentation/src/components/use-case/detail-page.js

+ 21 - 0
documentation/src/components/use-case/detail-page.js

@@ -0,0 +1,21 @@
+import React from "react";
+import Layout from "@theme/Layout";
+import Head from "@docusaurus/Head";
+
+const UseCaseDetail = (props) => {
+    const { data } = props;
+
+    return (
+        <Layout>
+            <Head title={`${data.title} | refine`}>
+                <html data-page="use-cases-detail" data-customized="true" />
+            </Head>
+            <div className="container max-w-[1040px]">
+                <h1>Use Case Detail</h1>
+                <pre>{JSON.stringify(props, null, 2)}</pre>
+            </div>
+        </Layout>
+    );
+};
+
+export default UseCaseDetail;