| 2 | import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd'; |
| 3 | |
| 4 | interface IPokemon { |
| 5 | name: string; |
| 6 | url: string; |
| 7 | } |
| 8 | |
| 9 | export default function Board() { |
| 10 | const [pokemon, setPokemon] = useState<Array<IPokemon>>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected