reactjs-basics
reactjs-basics copied to clipboard
Source Code of my ReactJS Basics Series on YouTube (https://www.youtube.com/playlist?list=PL55RiY5tL51oyA8euSROLjMFZbXaV7skS)
 I am getting the following error when using the "copy" command while running on windows. Please suggest, I've tried all the alternatives mentioned everywhere.
 This is what i get, then when i load it, the console says cannot find resource
> [email protected] build D:\My React\ReactApp\reactjs-basics > webpack -d && cp src/index.html dist/index.html && webpack-dev-server --content-base src/ --inline --hot 'webpack' is not recognized as an internal or external command, operable program...
Hi, I've changed the syntax and added a dependency to use the new 'prop-types' library.
Added commented code snippets to be used for windows. This is to resolve issue of cp command not running in windows
 what should I do I have add all dependencies and package webpack Config ``` const webpack = require('webpack'); module.exports = { entry: './src/app/index.js', module: { rules: [ { test:...
**Video 1/2/3:** https://www.youtube.com/watch?v=G40iHC-h0c0&list=PL55RiY5tL51oyA8euSROLjMFZbXaV7skS&index=4 This works in 2018, webpack 4: webpack.config.js const webpack = require('webpack'); module.exports = { entry: './src/app/index.js', module: { rules: [ { test: /\.(js|jsx)$/, exclude: /node_modules/, use: ['babel-loader']...