From 8b53e0a0e4fca59047e52a5f11e9ca0005bc1e4b Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 2 Jun 2024 03:24:30 +0900 Subject: [PATCH] feat: add Checkbox docs in route --- packages/react/src/RouteObject.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/react/src/RouteObject.ts b/packages/react/src/RouteObject.ts index a3cea10..c841c89 100644 --- a/packages/react/src/RouteObject.ts +++ b/packages/react/src/RouteObject.ts @@ -34,6 +34,11 @@ export default { path: "/docs/components/button", name: "Button", eq: (pathname: string) => pathname === "/docs/components/button" + }, + { + path: "/docs/components/checkbox", + name: "Checkbox", + eq: (pathname: string) => pathname === "/docs/components/checkbox" } ] }