Skip to content

Commit 34dc625

Browse files
committed
Code files
1 parent 31346f5 commit 34dc625

File tree

389 files changed

+17125
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+17125
-0
lines changed

chapter-03/.gitignore

Whitespace-only changes.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "airbnb",
3+
4+
"rules": {
5+
"semi": [2, "never"],
6+
"react/prefer-stateless-function": 0,
7+
}
8+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules
5+
6+
# production
7+
build
8+
9+
# misc
10+
.DS_Store
11+
npm-debug.log
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { configure } from '@kadira/storybook'
2+
3+
function loadStories() {
4+
require('../stories/list')
5+
}
6+
7+
configure(loadStories, module)

0 commit comments

Comments
 (0)