React Components

From bibbleWiki
Revision as of 02:23, 4 December 2020 by Iwiseman (talk | contribs) (Created page with "=Designing Components= ==Resources== These can found here https://github.com/pkellner/pluralsight-designing-react-components-course-code Implements *Component Reuse *Single R...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Designing Components

Resources

These can found here https://github.com/pkellner/pluralsight-designing-react-components-course-code Implements

  • Component Reuse
  • Single Responsibility
  • Dont Repeat Yourself

Next JS Setup

Create project with

npm install react react-dom next --save

Add three commands to packages.json

"dev": "next",
"build": "next build",
"start": "next start"