1. npx react-native init DIOmarketplace
2. yarn add eslint -D
yarn eslint --init
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
age | gender | fruit | |
---|---|---|---|
20 | 1 | apple | |
23 | 1 | apple | |
25 | 1 | apple | |
26 | 1 | orange | |
29 | 1 | orange | |
30 | 1 | orange | |
31 | 1 | Watermelon | |
33 | 1 | Watermelon | |
37 | 1 | Watermelon |
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
import React from 'react'; | |
import styled, { css } from 'styled-components'; | |
import NextLink from 'next/link'; | |
const BASE_URL = 'http://alurakut.vercel.app/'; | |
const v = '1'; | |
function Link({ href, children, ...props }) { | |
return ( |
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
import { commitMutation, graphql } from 'react-relay'; | |
import environment from '../../../../environment'; | |
const mutation = graphql` | |
mutation deleteNoteMutation($_id: ID) { | |
deleteNote(_id: $_id) | |
} | |
`; | |
function deleteNoteMutation(_id) { |
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
-- 1. Find the names of all students who are friends with someone named Gabriel. | |
SELECT H1.name | |
FROM Highschooler H1 | |
INNER JOIN Friend ON H1.ID = Friend.ID1 | |
INNER JOIN Highschooler H2 ON H2.ID = Friend.ID2 | |
WHERE H2.name = "Gabriel"; | |
-- 2. For every student who likes someone 2 or more grades younger than themselves, return that student's name and grade, and the name and grade of the student they like. |
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
{ | |
"estados": [ | |
{ | |
"sigla": "AC", | |
"nome": "Acre", | |
"cidades": [ | |
"Acrelândia", | |
"Assis Brasil", | |
"Brasiléia", | |
"Bujari", |
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
78 Tax Tips for Canadians for Dummies (ISBN - 0470676582) | |
A Family's Guide to the Military for Dummies (ISBN - 0470386975) | |
Access 2007 VBA Programming for Dummies (ISBN - 0470046538) | |
Access 2010 All-in-One for Dummies (ISBN - 0470532181) | |
Access Forms & Reports for Dummies (ISBN - 0764599658) | |
Access VBA Programming for Dummies (ISBN - 0764574116) | |
Accounting for Dummies (ISBN - 0470246006) | |
Accounting Workbook for Dummies (ISBN - 0471791458) | |
Acne for Dummies (ISBN - 0471746983) | |
Acrylic Painting for Dummies (ISBN - 047044455X) |