├── examples
├── index.cjsx
├── index.html
└── examples.cjsx
├── .npmignore
├── .gitignore
├── Makefile
├── README.md
├── webpack.production.config.js
├── webpack.config.js
├── LICENSE
├── package.json
└── src
└── index.cjsx
/examples/index.cjsx:
--------------------------------------------------------------------------------
1 | React = require('react')
2 | ReactDOM = require('react-dom');
3 | Examples = require './examples'
4 |
5 | ReactDOM.render(
59 | {"""
60 |
61 | """}
62 |
63 |
67 | {"""
68 |
75 | """}
76 |
77 |
92 | {"""
93 |
98 | """}
99 |
100 |
109 | {"""
110 | dateData = for i in [0..100]
111 | {
112 | date: faker.date.between("2014-06-23T00:21:59.271Z", "2014-07-23T00:21:59.271Z")
113 | value: faker.random.number(100)
114 | }
115 |
116 | dateData = _.sortBy dateData, (datum) -> return datum.date
117 |
118 |
123 | """}
124 |
125 |
141 | {" "}
142 |
143 |