mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Fix key warning (#93)
This commit is contained in:
parent
c077403eec
commit
8605af2b54
1 changed files with 1 additions and 1 deletions
|
@ -753,7 +753,7 @@ class App extends React.Component<{}, AppState> {
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Shapes</legend>
|
<legend>Shapes</legend>
|
||||||
{SHAPES.map(({ value, label }) => (
|
{SHAPES.map(({ value, label }) => (
|
||||||
<label>
|
<label key={value}>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
checked={this.state.elementType === value}
|
checked={this.state.elementType === value}
|
||||||
|
|
Loading…
Add table
Reference in a new issue