Skip to content

Commit

Permalink
gallery: section -> article
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Aug 24, 2023
1 parent 6019637 commit af5b5d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/refactor/ui/components/gallery/Gallery.tsx
Expand Up @@ -12,7 +12,7 @@ export const Gallery = ({ tabs, wrapperClassName }: GalleryProps) => {
const [activeTab, setActiveTab] = useState(0);

return (
<section className="tabs-container">
<article className="tabs-container">
<header className="tabs-header">
<nav className="tabs-wrapper">
<ul className="tabs" data-active-tab={activeTab}>
Expand All @@ -34,6 +34,6 @@ export const Gallery = ({ tabs, wrapperClassName }: GalleryProps) => {
return <GalleryItem {...tab} />;
})}
</article>
</section>
</article>
);
};

0 comments on commit af5b5d3

Please sign in to comment.