(args)
| 3 | import { colors } from '../options'; |
| 4 | |
| 5 | function Example(args) { |
| 6 | return ( |
| 7 | <Table> |
| 8 | <thead> |
| 9 | <tr> |
| 10 | <th>Class</th> |
| 11 | <th>Heading</th> |
| 12 | <th>Heading</th> |
| 13 | </tr> |
| 14 | </thead> |
| 15 | <tbody> |
| 16 | {colors.map((color) => ( |
| 17 | <tr className={`table-${color}`} key={color}> |
| 18 | <td>{color}</td> |
| 19 | <td>Cell</td> |
| 20 | <td>Cell</td> |
| 21 | </tr> |
| 22 | ))} |
| 23 | </tbody> |
| 24 | </Table> |
| 25 | ); |
| 26 | } |
| 27 | |
| 28 | export default Example; |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…