Install NodeJS LTS version (10.15.3 or higher) at http://nodejs.org
https://chariotsolutions.com/ptw2019
(will post things there...)
Need:
- NodeJS LTS or nvm (https://github.com/nvm-sh/nvm)
- Visual Studio Code or stackblitz.io (browser IDE)
Install NodeJS LTS version (10.15.3 or higher) at http://nodejs.org
https://chariotsolutions.com/ptw2019
(will post things there...)
Need:
| import React, { Component } from 'react'; | |
| export default class TaskList extends Component { | |
| render() { | |
| <div className="taskList"> | |
| <h2>Task List</h2> | |
| <hr /> | |
| <ul> | |
| <li>Task One</li> | |
| <li>Task Two</li> | |
| </ul> | |
| </div> | |
| } | |
| } |