- tsconfig.json configuration:
- "noEmit": true will not have Typescript emit Javascript out after compilation
- https://www.sitepoint.com/react-with-typescript-best-practices/
- react-app-env.d.ts references the types of react-scripts, and helps with things like allowing for SVG imports
- React.ReactNode vs. React.FC
- function Heading(): React.ReactNode { return hello }
- const HeadingTwo: React.FC = () ⇒ hello
- using string literal type for useReducer (described in the link above)
- npm vs npx vs yarn
- npx only executes without installing
- https://www.whitesourcesoftware.com/free-developer-tools/blog/npm-vs-yarn-which-should-you-choose/
- currently working on my #7 video on youtube (Go React Auth frontend part)
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)