MCPcopy Create free account
hub / github.com/react-dnd/react-dnd / render

Method render

examples/04 Sortable/Simple/Container.js:56–72  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

54 }
55
56 render() {
57 const { cards } = this.state;
58
59 return (
60 <div style={style}>
61 {cards.map((card, i) => (
62 <Card
63 key={card.id}
64 index={i}
65 id={card.id}
66 text={card.text}
67 moveCard={this.moveCard}
68 />
69 ))}
70 </div>
71 );
72 }
73}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected