feat: add Drawer page to router
This commit is contained in:
parent
94ca2a93fb
commit
8f1caa7775
@ -27,6 +27,10 @@ import ComponentsCheckbox, {
|
|||||||
import ComponentsDialog, {
|
import ComponentsDialog, {
|
||||||
tableOfContents as componentsDialogToc,
|
tableOfContents as componentsDialogToc,
|
||||||
} from "./docs/components/Dialog.mdx";
|
} from "./docs/components/Dialog.mdx";
|
||||||
|
import ComponentsDrawer, {
|
||||||
|
tableOfContents as componentsDrawerToc,
|
||||||
|
} from "./docs/components/Drawer.mdx";
|
||||||
|
|
||||||
import { ForwardedRef, forwardRef, useContext, useEffect, useRef } from "react";
|
import { ForwardedRef, forwardRef, useContext, useEffect, useRef } from "react";
|
||||||
import { HeadingContext } from "./HeadingContext";
|
import { HeadingContext } from "./HeadingContext";
|
||||||
|
|
||||||
@ -159,6 +163,14 @@ const router = createBrowserRouter(
|
|||||||
</DynamicLayout>
|
</DynamicLayout>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
<Route
|
||||||
|
path="drawer"
|
||||||
|
element={
|
||||||
|
<DynamicLayout toc={componentsDrawerToc}>
|
||||||
|
<ComponentsDrawer components={overrideComponents} />
|
||||||
|
</DynamicLayout>
|
||||||
|
}
|
||||||
|
/>
|
||||||
</Route>
|
</Route>
|
||||||
</Route>
|
</Route>
|
||||||
</Route>
|
</Route>
|
||||||
|
@ -44,6 +44,11 @@ export default {
|
|||||||
path: "/docs/components/dialog",
|
path: "/docs/components/dialog",
|
||||||
name: "Dialog",
|
name: "Dialog",
|
||||||
eq: (pathname: string) => pathname === "/docs/components/dialog"
|
eq: (pathname: string) => pathname === "/docs/components/dialog"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/docs/components/drawer",
|
||||||
|
name: "Drawer",
|
||||||
|
eq: (pathname: string) => pathname === "/docs/components/drawer"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user