Skip to content

Instantly share code, notes, and snippets.

@charbelrami
Created January 6, 2019 18:13
Show Gist options
  • Save charbelrami/bcef446fa2f47b72335b29dcf149baea to your computer and use it in GitHub Desktop.
Save charbelrami/bcef446fa2f47b72335b29dcf149baea to your computer and use it in GitHub Desktop.
Pure Component
import React from 'react';
export default function TodoList({ todos }) {
return (
<ol>
{todos.map((todo, index) => (
<li key={index}>{todo.text}</li>
))}
</ol>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment