feat: add docs layout

This commit is contained in:
p-sw 2024-05-31 21:10:51 +09:00
parent 799901c87a
commit 8add098f1a

View File

@ -0,0 +1,11 @@
import { Outlet } from "react-router-dom";
function DocsLayout() {
return (
<>
<Outlet />
</>
);
}
export default DocsLayout;