p
Size: a a a
p
p
p
З🧟
p
const Box: FC<BoxProps> = ({ children, isVisible }) => {
return (
<>
<TransitionGroup>
{isVisible && (
<CSSTransition timeout={500} classNames="list">
<div className={styles.wrapper}>
<div className={styles.box}>{children}</div>
</div>
</CSSTransition>
)}
</TransitionGroup>
</>
);
};
YP
YP
p
YP
YP
В
В
p
p
В
В
В
В
В
p