()
| 4276 | } |
| 4277 | |
| 4278 | function Example104() { |
| 4279 | const props = { |
| 4280 | className: 'my-input', |
| 4281 | style: { |
| 4282 | borderColor: 'black', |
| 4283 | }, |
| 4284 | }; |
| 4285 | |
| 4286 | return ( |
| 4287 | <FormGroup className="some-class" aria-labelledby="label"> |
| 4288 | <Label sm={3} id="label"> |
| 4289 | Label |
| 4290 | </Label> |
| 4291 | |
| 4292 | <Col className="col-12" sm={9}> |
| 4293 | <Input type="text" bsSize="lg" {...props} /> |
| 4294 | </Col> |
| 4295 | </FormGroup> |
| 4296 | ); |
| 4297 | } |
| 4298 | |
| 4299 | function Example105() { |
| 4300 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…