-
- Downloads
Port the whole website to React
Use React to structurize the code better and allowing easier creation of HTML elements and code reuse.
Showing
- .babelrc 3 additions, 0 deletions.babelrc
- Makefile 5 additions, 2 deletionsMakefile
- package.json 10 additions, 4 deletionspackage.json
- public/index.html 1 addition, 18 deletionspublic/index.html
- src/App.js 62 additions, 0 deletionssrc/App.js
- src/Body.js 31 additions, 0 deletionssrc/Body.js
- src/Header.js 56 additions, 0 deletionssrc/Header.js
- src/Section.js 28 additions, 0 deletionssrc/Section.js
- src/index.js 5 additions, 84 deletionssrc/index.js
- src/style.scss 18 additions, 1 deletionsrc/style.scss
- webpack.config.js 0 additions, 56 deletionswebpack.config.js
- yarn.lock 174 additions, 1 deletionyarn.lock
.babelrc
0 → 100644
... | @@ -5,13 +5,19 @@ | ... | @@ -5,13 +5,19 @@ |
"author": "Jelle van der Waa", | "author": "Jelle van der Waa", | ||
"license": "MIT", | "license": "MIT", | ||
"private": true, | "private": true, | ||
"dependencies": { | "dependencies": {}, | ||
}, | |||
"devDependencies": { | "devDependencies": { | ||
"@babel/core": "^7.9.6", | "@babel/core": "^7.9.6", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.9.6", | |||
"@babel/plugin-transform-react-jsx": "^7.9.4", | |||
"@babel/preset-env": "^7.9.6", | "@babel/preset-env": "^7.9.6", | ||
"@babel/preset-react": "^7.9.4", | |||
"babelify": "^10.0.0", | "babelify": "^10.0.0", | ||
"budo": "^11.6.3", | "budo": "^11.6.3", | ||
"bulma": "^0.8.2" | "bulma": "^0.8.2", | ||
} | "react": "^16.13.1", | ||
"react-dom": "^16.13.1", | |||
"uglify-js": "^3.9.3" | |||
}, | |||
"browserslist": "> 0.25%, not dead" | |||
} | } |
src/App.js
0 → 100644
src/Body.js
0 → 100644
src/Header.js
0 → 100644
src/Section.js
0 → 100644
webpack.config.js
deleted
100644 → 0
Please register or sign in to comment