reactjs-basics icon indicating copy to clipboard operation
reactjs-basics copied to clipboard

Source Code of my ReactJS Basics Series on YouTube (https://www.youtube.com/playlist?list=PL55RiY5tL51oyA8euSROLjMFZbXaV7skS)

Results 25 reactjs-basics issues
Sort by recently updated
recently updated
newest added

![error](https://user-images.githubusercontent.com/23528731/34084506-aa90cc92-e3a7-11e7-9eb9-822633e1a66e.PNG) 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.

![ee](https://user-images.githubusercontent.com/54663777/65023946-3e3c8500-d977-11e9-9d9a-be5f16c7ae38.png) 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

![react](https://user-images.githubusercontent.com/18181752/47555713-25278180-d92a-11e8-84bb-2323de5a9787.jpg) 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']...