Skip to content

Commit 271ebb4

Browse files
committed
first commit
0 parents  commit 271ebb4

15 files changed

+11568
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
3+
node_js:
4+
- stable
5+
6+
install:
7+
- npm install
8+
9+
script:
10+
- npm test

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# react-composability-over-configurability
2+
3+
[![Build Status](https://travis-ci.org/the-road-to-learn-react/react-composability-over-configurability.svg?branch=master)](https://travis-ci.org/the-road-to-learn-react/react-composability-over-configurability) [![Slack](https://slack-the-road-to-learn-react.wieruch.com/badge.svg)](https://slack-the-road-to-learn-react.wieruch.com/)
4+
5+
## Installation
6+
7+
* `git clone [email protected]:the-road-to-learn-react/react-composability-over-configurability.git`
8+
* cd react-composability-over-configurability
9+
* npm install
10+
* npm start
11+
* visit `http://localhost:3000/`

0 commit comments

Comments
 (0)