mirror of
https://github.com/mue/mue.git
synced 2026-07-14 20:43:54 +02:00
fix errors
This commit is contained in:
@@ -11,7 +11,7 @@ export default class Items extends React.PureComponent {
|
||||
<h1>{this.props.title}</h1>
|
||||
<div className='items'>
|
||||
{this.props.items.map((item) =>
|
||||
<div className='item' onClick={() => this.props.toggleFunction(item.name)}>
|
||||
<div className='item' onClick={() => this.props.toggleFunction(item.name)} key={item.name}>
|
||||
<img alt='icon' draggable={false} src={'https://external-content.duckduckgo.com/iu/?u=' + item.icon_url} />
|
||||
<div className='details'>
|
||||
<h4>{item.display_name}</h4>
|
||||
|
||||
Reference in New Issue
Block a user