[SectionTitle] test, webOS 4.5

This commit is contained in:
younghoon100.park
2024-07-10 20:12:00 +09:00
parent 8126737064
commit cc1e453bb0

View File

@@ -12,7 +12,7 @@ export default memo(function SectionTitle({
...rest
}) {
return (
<div
<h2
className={classNames(css.sectionTitle, className)}
aria-label={label ? label : title}
tabIndex={-1}
@@ -22,6 +22,6 @@ export default memo(function SectionTitle({
>
{title}
{itemCount && <span>({itemCount})</span>}
</div>
</h2>
);
});