Skip to content

Instantly share code, notes, and snippets.

@krimple
Last active May 8, 2019 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krimple/5fb68c20bcb625571f617c0067cc3edd to your computer and use it in GitHub Desktop.
Save krimple/5fb68c20bcb625571f617c0067cc3edd to your computer and use it in GitHub Desktop.
Philly DevDays 2019 Snippets
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>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment