Create detail-page.js

This commit is contained in:
Stefan Pejcic
2024-02-28 21:24:47 +01:00
committed by GitHub
parent 19c7bc8d73
commit da05e6b182

View File

@@ -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;