type Customer {
id: ID!
email: String!
}
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
| .main-content { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| height: 100vh; | |
| min-height: 650px; | |
| } | |
| .login-form { | |
| background-color: white; | |
| padding: 48px 16px; |
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
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "Lambda resource stack creation using Amplify CLI", | |
| "Parameters": { | |
| "CloudWatchRule": { | |
| "Type": "String", | |
| "Default": "NONE", | |
| "Description": " Schedule Expression" | |
| }, | |
| "env": { |
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
| import { useReducer, useEffect } from 'react'; | |
| import { useSwipeable, SwipeableHandlers, EventData } from 'react-swipeable'; | |
| function previous(length: number, current: number) { | |
| return (current - 1 + length) % length; | |
| } | |
| function next(length: number, current: number) { | |
| return (current + 1) % length; | |
| } |
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
| module.exports = { | |
| root: true, | |
| parser: '@typescript-eslint/parser', | |
| parserOptions: { | |
| ecmaFeatures: { jsx: true }, | |
| }, | |
| env: { | |
| browser: true, | |
| node: true, | |
| }, |
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
| module.exports = { | |
| parser: '@typescript-eslint/parser', | |
| plugins: ['@typescript-eslint', 'jest', 'jsx-a11y', 'prettier'], | |
| extends: [ | |
| 'airbnb', | |
| 'plugin:@typescript-eslint/recommended', | |
| 'plugin:jest/recommended', | |
| 'plugin:prettier/recommended', | |
| 'prettier/react', | |
| 'prettier/@typescript-eslint', |
This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "_id": "5df38f6e695566a48211da8f", | |
| "first_name": "Blankenship", | |
| "last_name": "Vincent", | |
| "email": "[email protected]", | |
| "children": { | |
| "first_name": "Robinson", | |
| "last_name": "Alston", | |
| "email": "[email protected]" |
This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "_id": "5df3996f42f77f726c9b217c", | |
| "first_name": "Althea", | |
| "last_name": "Macias", | |
| "email": "[email protected]", | |
| "children": { | |
| "first_name": "Dillard", | |
| "last_name": "Wright", | |
| "email": "[email protected]" |
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
| [{"id":1,"first_name":"Vanessa","last_name":"Grimsell","email":"[email protected]","children":{"first_name":"Elsa","last_name":"Willmetts","email":"Wofenden"}}, | |
| {"id":2,"first_name":"Mordecai","last_name":"Lauks","email":"[email protected]","children":{"first_name":"Calypso","last_name":"Lobbe","email":"Blanko"}}, | |
| {"id":3,"first_name":"Theressa","last_name":"Sellars","email":"[email protected]","children":{"first_name":"Alyda","last_name":"Georgeon","email":"Castelletti"}}, | |
| {"id":4,"first_name":"Pebrook","last_name":"Delafoy","email":"[email protected]","children":{"first_name":"Domeniga","last_name":"Gottschalk","email":"Nabarro"}}, | |
| {"id":5,"first_name":"Aurea","last_name":"Hoodlass","email":"[email protected]","children":{"first_name":"Salomi","last_name":"Jados","email":"Ovey"}}, | |
| {"id":6,"first_name":"Fields","last_name":"Skoate","email":"[email protected]","children":{"first_name":"Hughie","last_name":"Ruben","email":"Alanbrooke"}}, | |
| {"id":7,"first_name":"Jerrie","last_name":"Brittin" |
NewerOlder