From da05e6b182a25da9ec67f8e35a6d268ecc34a1a8 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Wed, 28 Feb 2024 21:24:47 +0100 Subject: [PATCH] Create detail-page.js --- .../src/components/use-case/detail-page.js | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 documentation/src/components/use-case/detail-page.js diff --git a/documentation/src/components/use-case/detail-page.js b/documentation/src/components/use-case/detail-page.js new file mode 100644 index 0000000..e79878b --- /dev/null +++ b/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 ( + + + + +
+

Use Case Detail

+
{JSON.stringify(props, null, 2)}
+
+
+ ); +}; + +export default UseCaseDetail;