From e6465a47dec79f462a13870ebf4dbe7864a7b391 Mon Sep 17 00:00:00 2001 From: Alican Erdurmaz Date: Mon, 30 Dec 2024 12:39:30 +0300 Subject: [PATCH] fix(docs): antd breadcrumb example (#6613) --- .../ant-design/components/breadcrumb/index.md | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/documentation/docs/ui-integrations/ant-design/components/breadcrumb/index.md b/documentation/docs/ui-integrations/ant-design/components/breadcrumb/index.md index 4ce98b7730db..b39c0f822e25 100644 --- a/documentation/docs/ui-integrations/ant-design/components/breadcrumb/index.md +++ b/documentation/docs/ui-integrations/ant-design/components/breadcrumb/index.md @@ -80,6 +80,9 @@ const PostList = () => { return (

Content of your list page...

+ + Show Post 123 +
); }; @@ -87,12 +90,8 @@ const PostList = () => { setInitialRoutes(["/posts/show/123"]); render( - - + - - } /> - } /> - + + } /> + } /> + - - , + + , ); ```