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;