()
| 7 | |
| 8 | export default class NewLessonInput extends React.Component { |
| 9 | render() { |
| 10 | const { name } = this.props |
| 11 | let iconType = "material" |
| 12 | if (this.props.iconType) iconType = this.props.iconType |
| 13 | let below |
| 14 | if (this.props.below) |
| 15 | below = <View style={styles.belowStyle}>{this.props.below()}</View> |
| 16 | return ( |
| 17 | <Fragment> |
| 18 | <TouchInput |
nothing calls this directly
no outgoing calls
no test coverage detected