React
Glossary
Create React App
TypeScript support
Cons:
No SEO
Default
Change
public/index.html
:<title>
Change
public/mainfest.json
Relay
Difficult and heavy
Requires
relay-compiler
Requires exporting a schema from your graphql endpoint
SEO
TypeScript
https://github.com/sw-yx/react-typescript-cheatsheet
Creating
Adding
https://facebook.github.io/create-react-app/docs/adding-typescript
Does Not Support
No
const enum
Directory Structure
useEffect with async/await
await-useEffect.tsx
useRef(null)
Error:
From GitHub comment
By default if you create a ref with a
null
default value and specify its generic parameter you're signaling your intent to have React "own" the reference. If you want to be able to mutate a ref that you own you should declare it like so:
Solution:
Change
useRef<T | null>(null)
touseRef<T>()
Bootstrap
Use reactstrap
Last updated