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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;