Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
re-comitting
  • Loading branch information
marissaorea committed Nov 7, 2018
commit 4b9a9f4ac892265eb65489ef0cd106d3904ca817
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions frontend/src/components/Filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class Filter extends Component {
// }

render() {
console.log(this.props)
return (
<div className="filter">
<label htmlFor="title-filter">Title: </label>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/SongList.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const SongList = ({songs}) => {
<th>Singer</th>
<th>▶</th>
</tr>
{songs.map(song => <Song key={song.id} song={song} />)}
{songs.map(song => <Song key={song.id} song={song} />)}
<Filter/>
</tbody>
</table>
Expand Down