This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const categories = useMemo(() => { | |
| return products.reduce((categories, { category }) => { | |
| return !category || categories.find(({ id }) => category && category.id === id) | |
| ? categories | |
| : [ | |
| ...categories, | |
| { | |
| id: category.id, | |
| value: category.id, | |
| label: category.title, | 
Este é um pequeno guia para quem quer começar a desbravar no mundo do trabalho remoto.
Outros repositórios que também ajudam pessoas a desbravar no mundo do trabalho remoto.
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | document.addEventListener('wheel', function(e) | |
| { | |
| if(e.type != 'wheel') | |
| { | |
| return; | |
| } | |
| let delta = ((e.deltaY || -e.wheelDelta || e.detail) >> 10) || 1; | |
| delta = delta * (-300); | |
| document.documentElement.scrollLeft -= delta; | |
| // safari needs also this | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #add 'node_modules' to .gitignore file | |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin <branch-name> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "estados": [ | |
| { | |
| "sigla": "AC", | |
| "nome": "Acre", | |
| "cidades": [ | |
| "Acrelândia", | |
| "Assis Brasil", | |
| "Brasiléia", | |
| "Bujari", | 
