Skip to content

Commit b2b63d5

Browse files
First import
0 parents  commit b2b63d5

Some content is hidden

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

85 files changed

+38951
-0
lines changed

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See http://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
15+
npm-debug.log
16+
17+
/build

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# React Wines 102
2+
3+
This is the result of the [React 102 Workshop](https://github.com/react-bootcamp/react-102)
4+
5+
## Run
6+
7+
```sh
8+
npm install
9+
npm start
10+
```
11+
12+
or if you use `yarn`
13+
14+
```sh
15+
yarn install
16+
yarn run start
17+
```

docs/asset-manifest.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"main.css": "static/css/main.4eb23b07.css",
3+
"main.css.map": "static/css/main.4eb23b07.css.map",
4+
"main.js": "static/js/main.5724a9e6.js",
5+
"main.js.map": "static/js/main.5724a9e6.js.map"
6+
}

docs/css/custom.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.wine-detail-image {
2+
margin: 16px;
3+
}

0 commit comments

Comments
 (0)