| 14 | import ScreenWrapper from '../ScreenWrapper'; |
| 15 | |
| 16 | class ClassProgressBar extends React.Component { |
| 17 | constructor(props: ProgressBarProps) { |
| 18 | super(props); |
| 19 | } |
| 20 | |
| 21 | render() { |
| 22 | return <ProgressBar {...this.props} />; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | const AnimatedProgressBar = Animated.createAnimatedComponent(ClassProgressBar); |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…