(props)
| 15 | }); |
| 16 | |
| 17 | export function createWheel(props) { |
| 18 | |
| 19 | const wheel = new Wheel(createContainer(), props); |
| 20 | addBlankItems(wheel, props?.numberOfItems); |
| 21 | |
| 22 | return wheel; |
| 23 | |
| 24 | } |
| 25 | |
| 26 | function addBlankItems(wheel, numberOfItems) { |
| 27 |
no test coverage detected