Created
October 11, 2024 12:45
-
-
Save orodrigogo/5f65bdd3695f323b6416cc7cb162df80 to your computer and use it in GitHub Desktop.
Dados de exemplo do vídeo: Recrie a Interface do Notion com React Native, Expo e Expo Router: passo à passo
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 PAGES = [ | |
{ id: "1", title: "React Native" }, | |
{ id: "2", title: "Expo" }, | |
{ id: "3", title: "Links" }, | |
{ id: "4", title: "Projetos" }, | |
{ id: "5", title: "Node.js" }, | |
{ id: "6", title: "Expo Router" }, | |
{ id: "7", title: "Youtube" }, | |
{ id: "8", title: "Projetos" }, | |
] | |
const RECENT = [ | |
{ | |
id: "1", | |
title: "React Native", | |
cover: | |
"https://blog.rocketseat.com.br/content/images/size/w1000/2024/04/react-native-1.png", | |
}, | |
{ id: "2", title: "Expo", cover: undefined }, | |
{ id: "3", title: "Links", cover: undefined }, | |
] | |
export const DATA = { PAGES, RECENT } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment