feat: add Drawer page to router

This commit is contained in:
p-sw 2024-06-03 16:04:56 +09:00
parent 94ca2a93fb
commit 8f1caa7775
2 changed files with 17 additions and 0 deletions

View File

@ -27,6 +27,10 @@ import ComponentsCheckbox, {
import ComponentsDialog, {
tableOfContents as componentsDialogToc,
} from "./docs/components/Dialog.mdx";
import ComponentsDrawer, {
tableOfContents as componentsDrawerToc,
} from "./docs/components/Drawer.mdx";
import { ForwardedRef, forwardRef, useContext, useEffect, useRef } from "react";
import { HeadingContext } from "./HeadingContext";
@ -159,6 +163,14 @@ const router = createBrowserRouter(
</DynamicLayout>
}
/>
<Route
path="drawer"
element={
<DynamicLayout toc={componentsDrawerToc}>
<ComponentsDrawer components={overrideComponents} />
</DynamicLayout>
}
/>
</Route>
</Route>
</Route>

View File

@ -44,6 +44,11 @@ export default {
path: "/docs/components/dialog",
name: "Dialog",
eq: (pathname: string) => pathname === "/docs/components/dialog"
},
{
path: "/docs/components/drawer",
name: "Drawer",
eq: (pathname: string) => pathname === "/docs/components/drawer"
}
]
}