Listing 6-37: Round Two of RemindersList
import Reminder from './Reminder';
function RemindersList(props){
return(
<div>
<Reminder reminderText="Pick up Wesley" dueDate="2364-01-15" isComplete={false} />
<Reminder reminderText="Meet with Jean-Luc" dueDate="2364-01-29" isComplete={false} />
<Reminder reminderText="Holodeck time!" dueDate="2364-06-01" isComplete={false} />
</div>
);
}
export default RemindersList;
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.