Designer owns this! Everything here is rendered in a living style guide. CSS for each component will probably live alongside here when we inevitably go down that road...
components/
__tests__/
button.js
form.js
glyphhanger --subset=*.ttf --formats=woff2 --LATIN |
$ awk '/Jade/ && !/English/' ./students.csv | |
5553,Jade,Mathematics,100,,, | |
$ awk '/Jade/' ./students.csv | |
5553,Jade,English,73,,, | |
5553,Jade,Mathematics,100,,, | |
$ awk '/Jade/ {print "****"}' ./students.csv | |
**** |
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.my-module | |
color: red | |
&.-bar | |
color: blue |
Make server calls from action creator, but don't dispatch an action. When the promise resolves, call another function that actually dispatches an action.
dispy is cool, abstracts a bit of boilerplate
orodio/melbjs-feb-2015
<div class="grid"> | |
<div class="grid__col"><div class="content">foo</div></div> | |
<div class="grid__col"><div class="content">foo</div></div> | |
<div class="grid__col"><div class="content">foo</div></div> | |
</div> | |
<div class="grid -gutters"> | |
<div class="grid__col"><div class="content">foo</div></div> | |
<div class="grid__col"><div class="content">foo</div></div> | |
<div class="grid__col"><div class="content">foo</div></div> |
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
.foo | |
color: red | |
@media screen and (min-width: 1024px) | |
color: blue |
React = require("react") | |
VideoPlayerComponent = require("components/VideoPlayerComponent") | |
AppComponent = React.createClass | |
# Need to add this manually if you want it to show up in React Chrome Dev Tools | |
# See https://github.com/jsdf/coffee-react-transform/issues/16 | |
displayName: "AppComponent" | |
render: -> | |
<div> |
<a am-Button am-type="downcase">Foo!</a> |