Skip to content

Commit 69247e7

Browse files
give id to ul element
1 parent e055a35 commit 69247e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ep16-new-css/app/components/DisplayList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import DisplayItem from './DisplayItem';
44
export default class DisplayList extends React.Component {
55

66
render () {
7-
return <ul>
7+
return <ul id="todo-list">
88
{ this.props.todos.map((todo, i) => {
99
return <section id="main" key={todo.title}>
1010
<DisplayItem

0 commit comments

Comments
 (0)