aboutsummaryrefslogtreecommitdiff
path: root/components/Breadcrumbs/index.tsx
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-07-21 04:42:31 -0500
committerFurkan Sahin <furkan-dev@proton.me>2026-02-20 13:28:04 -0500
commit711eb24cb0b8c03bc43edffd082e91d970fc3dc9 (patch)
tree7f8c09ab3dd138670bd5bc3a67ad7a117c94c55a /components/Breadcrumbs/index.tsx
parent745f7a50ebe2583b9badd371fc2a6f394148c88b (diff)
Added a timestamp and sorts posts by timestamp
Diffstat (limited to 'components/Breadcrumbs/index.tsx')
-rw-r--r--components/Breadcrumbs/index.tsx4
1 files changed, 2 insertions, 2 deletions
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<BreadcrumbsProps> = ({children, className, ...props}) => (
- <div className={clsx(styles.breadcrumbs, className)} {...props}>
+ <span className={clsx(styles.breadcrumbs, className)} {...props}>
{Children.map(children, (child, index) => {
return (
<>
@@ -22,7 +22,7 @@ const Breadcrumbs : FC<BreadcrumbsProps> = ({children, className, ...props}) =>
</>
);
})}
- </div>
+ </span>
);
const Crumb : FC = ({children, ...props}) => (