CM
Size: a a a
CM
t
PV
З🧟
З🧟
З🧟
З🧟
З🧟
NW
ПЯ
NW
V
import { TransitionGroup } from 'react-transition-group';
<TransitionGroup className="option">
<LicInfoTitle
index={index}
licNumber={licNumber}
getLicenses={getLicenses}
/>
</TransitionGroup>
V
.option-enter {
opacity: 0;
}
.option-enter.option-enter-active {
opacity: 1;
transition: opacity 2s ease;
}
.option-exit {
opacity: 1;
}
.option-exit.option-exit-active {
opacity: 0;
transition: opacity 2s ease;
}
V