Port the whole website to React
Use React to structurize the code better and allowing easier creation of HTML elements and code reuse.
.babelrc
0 → 100644
... | ... | @@ -5,13 +5,19 @@ |
"author": "Jelle van der Waa", | ||
"license": "MIT", | ||
"private": true, | ||
"dependencies": { | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@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-react": "^7.9.4", | ||
"babelify": "^10.0.0", | ||
"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