Skip to content

Instantly share code, notes, and snippets.

@alexishida
Last active January 9, 2026 01:31
Show Gist options
  • Select an option

  • Save alexishida/bdaaab51d4400b6754320de6d901152b to your computer and use it in GitHub Desktop.

Select an option

Save alexishida/bdaaab51d4400b6754320de6d901152b to your computer and use it in GitHub Desktop.
Anotações do React
# Criando um projeto novo com o vite e o react-ts
npm create vite@latest app -- --template react-ts
# Instalando o tailwindcss no vite
npm install tailwindcss @tailwindcss/vite
# Instalando o Redux e Redux-React
npm install @reduxjs/toolkit react-redux
# Interactive React Lifecycle Methods diagram.
https://github.com/wojtekmaj/react-lifecycle-methods-diagram
https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/
# Validações
npm install formik
npm install yup
# Build
npm run build
# Rodando um build
npm install -g serve
serve -s build
## No Vite
npm run preview
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment