Skip to content

Commit

Permalink
fix: change meta info tag to h4 (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
gorgeousvlad authored Feb 10, 2023
1 parent 7bf6ab8 commit 8cd84bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MetaInfo/MetaInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ export interface MetaInfpoProps extends ClassNameProps {
}

const MetaInfo = ({items, className}: MetaInfpoProps) => (
<div className={b(null, className)}>
<h4 className={b(null, className)}>
{items.map((metaInfoItem) => (
<div key={metaInfoItem} className={b('item')}>
{metaInfoItem}
</div>
))}
</div>
</h4>
);
export default MetaInfo;

0 comments on commit 8cd84bd

Please sign in to comment.