Mocks are designated by a .mocks.js extensions and would be co-located with their corresponding module.
├── SomeComponent
├── __snapshots__/
├── SomeComponent.scss| from: http://www.meandmark.com/keycodes.html | |
| Virtual Keycodes for the Mac QWERTY Layout | |
| Keycodes are in hexadecimal. A blank entry means either there is no key assigned to that keycode or I was unable to find the assigned key. | |
| Keycode Key | |
| 0x00 A | |
| 0x01 S | |
| 0x02 D | |
| 0x03 F |
| // Copyright 2014 A Medium Corporation | |
| // | |
| // z-index.less | |
| // Medium.com's z-index scale. Z-index values should always be defined in z-index.less. This | |
| // allows us to at a glance determine relative layers of our application and prevents bugs | |
| // arrising from arbitrary z-index values. Do not edit the z-index scale! Only add application | |
| // scoped z-index values. | |
| //This is the SASS version modified by @toadkicker. |
| ////////////////////////////////////////////////////////////// | |
| // Font Variables (http://cssfontstack.com/) | |
| ////////////////////////////////////////////////////////////// | |
| // | |
| // Serif font-stacks | |
| // | |
| $baskerville-font-stack: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif !default; |
| var Col = require('react-bootstrap/lib/Col') | |
| var PageHeader = require('react-bootstrap/lib/PageHeader') | |
| var React = require('react') | |
| var Row = require('react-bootstrap/lib/Row') | |
| var {connect} = require('react-redux') | |
| var {reduxForm} = require('redux-form') | |
| var DateInput = require('./DateInput') | |
| var FormField = require('./FormField') | |
| var LoadingButton = require('./LoadingButton') |