From e424680fc013c291bd7eea4dc63b96401e5126a8 Mon Sep 17 00:00:00 2001 From: flu0r1ne Date: Wed, 21 Jul 2021 04:42:31 -0500 Subject: Added a timestamp and sorts posts by timestamp --- components/Breadcrumbs/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/Breadcrumbs/index.tsx') diff --git a/components/Breadcrumbs/index.tsx b/components/Breadcrumbs/index.tsx index ed650e3..c5a17b8 100644 --- a/components/Breadcrumbs/index.tsx +++ b/components/Breadcrumbs/index.tsx @@ -9,7 +9,7 @@ export type BreadcrumbsProps = { }; const Breadcrumbs : FC = ({children, className, ...props}) => ( -
+ {Children.map(children, (child, index) => { return ( <> @@ -22,7 +22,7 @@ const Breadcrumbs : FC = ({children, className, ...props}) => ); })} -
+ ); const Crumb : FC = ({children, ...props}) => ( -- cgit v1.2.3