({ ...args })
| 2 | import { Input } from 'reactstrap'; |
| 3 | |
| 4 | function Example({ ...args }) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <Input {...args} /> |
| 8 | </div> |
| 9 | ); |
| 10 | } |
| 11 | |
| 12 | Example.args = { |
| 13 | type: 'text', |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…