Skip to content

Commit a79d1b8

Browse files
v2 Delta 1.4
Added some styles from previously imported custom css library of Stephen Grider and Bulma
1 parent 42a876e commit a79d1b8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/TaskCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react';
33
const TaskCard = ({ task }) => {
44
return (
55
<div>
6-
<div key={task.id}>{task.id}. {task.title}</div>
6+
<div className='book-show' key={task.id}>{task.id}. {task.title}</div>
77
</div>
88
)
99
}

src/components/TaskList.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ const TaskList = ({ tasks }) => {
1111
return (
1212
<div>
1313
<h2 className='subtitle' >TaskList</h2>
14-
{renderTask}
14+
<div className='book-list' >
15+
{renderTask}
16+
</div>
1517
</div>
1618
)
1719
}

0 commit comments

Comments
 (0)