This file contains 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
Terminal: | |
- Zsh (Oh My Zsh): https://blog.rocketseat.com.br/terminal-com-oh-my-zsh-spaceship-dracula-e-mais/ | |
- Syntax Highlighting: https://github.com/zsh-users/zsh-syntax-highlighting | |
- Auto Suggestions: https://github.com/zsh-users/zsh-autosuggestions | |
.zshrc | |
SPACESHIP_PROMPT_ORDER=( | |
user # Username section |
This file contains 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 MyComponent = () => { | |
const [photos, setPhotos] = useState([{url: 'initial.png', alt: 'Initial Photo'}]); | |
useEffect(() => { | |
const getPhotos = async () => { | |
return api.get('/photos'); | |
} | |
const response = await getPhotos(); | |