This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import TaskList from './TaskList.js'; | |
| import Date from './Date.js'; | |
| import Avatar from './Avatar.js'; | |
| import AddButton from './AddButton.js'; | |
| import './App.css'; | |
| class App extends Component { | |
| render() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react'; | |
| import {Row, Col, Image} from 'react-bootstrap'; | |
| class Avatar extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <Row> | |
| <Col xs={10}></Col> | |
| <Col xs={2}> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import TaskList from './TaskList.js'; | |
| import Date from './Date.js'; | |
| import './App.css'; | |
| class App extends Component { | |
| render() { | |
| return ( | |
| <div style={{padding: '30px 30px'}}> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react'; | |
| class Date extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <h1>Thursday</h1> | |
| <p>May 19, 2016</p> | |
| </div> | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import TaskList from './TaskList.js'; | |
| import './App.css'; | |
| class App extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <TaskList /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import Task from './Task.js'; | |
| class TaskList extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <Task /> | |
| <Task /> | |
| <Task /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import Task from './Task.js'; | |
| import './App.css'; | |
| class App extends Component { | |
| render() { | |
| return ( | |
| <Task /> | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react'; | |
| import {Row, Col} from 'react-bootstrap'; | |
| import FontAwesome from 'react-fontawesome'; | |
| class Task extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <Row> | |
| <Col xs={1}> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import App from './App'; | |
| import './index.css'; | |
| import 'bootstrap/dist/css/bootstrap.css'; | |
| import 'bootstrap/dist/css/bootstrap-theme.css'; | |
| import 'font-awesome/css/font-awesome.css'; | |
| ReactDOM.render( |