MCPcopy Create free account
hub / github.com/SuboptimalEng/coding-tutorials / IPokemon

Interface IPokemon

react-pokemon-kanban/src/components/Board.tsx:4–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected