Advertisement
cbigot

Untitled

Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import * as React from 'react';
  2. import TodoInput from '../../components/TodoInput/TodoInput';
  3. import TodoList from '../../components/TodoList/TodoList';
  4. import './TodoView.css';
  5.  
  6. export class TodoView extends React.Component {
  7.     public render() {
  8.         return (
  9.             <div className="todo-view">
  10.                 <TodoList />
  11.                 <TodoInput />
  12.             </div>
  13.         );
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement