Skip to content

Commit 89887b7

Browse files
small updates
1 parent aa62cd2 commit 89887b7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/notes-list/NotesList.component.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const NotesList = ({notes}) => (
66
<>
77
<div className='notes-list'>
88
{notes.map(note => (
9-
<Note key={note.ID} note={note}></Note>
9+
<Note key={note.id} note={note}></Note>
1010
))}
1111
</div>
1212
</>

src/components/status-box/status-box.component.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react'
2+
import './status-box.styles.css'
23

34
export const StatusBox = ({status}) => (
45
<div className='status-box'>{status}</div>

0 commit comments

Comments
 (0)