This commit is contained in:
Shoaib Bhimani 2018-06-05 04:31:01 +05:30 коммит произвёл Scott Mikula
Родитель 60b0234747
Коммит ef1e94c96d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ class TodoListComponent extends React.Component<any, any> {
render() {
return (
<div>
getStore().todos.map(todo => <div>{todo.text}</div>)
{getStore().todos.map(todo => <div>{todo.text}</div>)}
</div>
);
}