Created
July 25, 2019 18:47
-
-
Save diego3g/cdc1fa2fc39b8e7c191ad651b310fab5 to your computer and use it in GitHub Desktop.
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
export function loadLists() { | |
return [ | |
{ | |
title: 'Tarefas', | |
creatable: true, | |
cards: [ | |
{ | |
id: 1, | |
content: 'Estudar módulo 01 de NodeJS', | |
labels: ['#7159c1'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
{ | |
id: 2, | |
content: 'Criar vídeo para o Youtube ensinando a recriar a interface do Pipefy', | |
labels: ['#7159c1'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
{ | |
id: 3, | |
content: 'Estudar módulo 03 de React Native', | |
labels: ['#7159c1'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
{ | |
id: 4, | |
content: 'Gravar Aula "NextJS: Utilizando server-side rendering com ReactJS"', | |
labels: ['#54e1f7'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
{ | |
id: 5, | |
content: 'Gravar testes e deploy ReactJS', | |
labels: ['#54e1f7'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
] | |
}, | |
{ | |
title: 'Fazendo', | |
creatable: false, | |
cards: [ | |
{ | |
id: 6, | |
content: 'Recriando clone do Pipefy', | |
labels: [], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
} | |
] | |
}, | |
{ | |
title: 'Pausado', | |
creatable: false, | |
cards: [ | |
{ | |
id: 7, | |
content: 'Gravar sobre Geolocalização e mapas com React Native', | |
labels: ['#7159c1'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
{ | |
id: 8, | |
content: 'Gravar testes e deploy ReactJS', | |
labels: ['#54e1f7'], | |
user: 'https://rocketseat-cdn.s3-sa-east-1.amazonaws.com/profile.png' | |
}, | |
{ | |
id: 9, | |
content: 'Ajustes na biblioteca unform', | |
labels: [], | |
} | |
] | |
}, | |
{ | |
title: 'Concluído', | |
creatable: false, | |
done: true, | |
cards: [ | |
{ | |
id: 10, | |
content: 'Gravar aula sobre deploy e CI com React Native', | |
labels: [], | |
}, | |
{ | |
id: 12, | |
content: 'Gravar testes e deploy ReactJS', | |
labels: ['#54e1f7'], | |
}, | |
{ | |
id: 13, | |
content: 'Gravar Aula "Internacionalização de aplicações Node.js, ReactJS e React Native"', | |
labels: ['#7159c1'], | |
} | |
] | |
}, | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment