Skip to content

Instantly share code, notes, and snippets.

const Instructions = ({title, steps}) =>
<section className='instructions'>
<h2>{title}</h2>
{steps.map(step, i)=>
<p key={i}>step</p>
}
</section>
export default Instructions
apm install linter linter-htmlhint linter-scss-lint linter-eslint linter-jsonlint emmet-atom language-babel auto-update-packages
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
}
{
"html": {
"tag_case": "lower",
"attr_quotes": "double",
"self_closing_tag": true
},
"jsx": {
"tag_case": "lower",
"attr_quotes": "single",
"self_closing_tag": true
{
"description": "The perfect scaffolding for React + Babel + Webpack + d3 development in Atom",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
@houhr
houhr / index.html
Last active February 15, 2017 17:44
Working-Hours-vs-Sitting-Hours
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Working Hours vs. Sitting Hours</title>
<link href="https://fonts.googleapis.com/css?family=Dosis|Merriweather:700" rel="stylesheet">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v0.4.min.js"></script>