chore: formatting

This commit is contained in:
2023-11-07 12:37:23 +00:00
parent b166427f28
commit fc3d196f48
5 changed files with 15 additions and 9 deletions

View File

@ -31,7 +31,9 @@ export function ShowMoreInView({ text, onClick, className }: ShowMoreProps) {
}
}, [inView]);
return <div className={classNames("show-more-container", className)} ref={ref}>
{text}
</div>
}
return (
<div className={classNames("show-more-container", className)} ref={ref}>
{text}
</div>
);
}