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 PHONECODESES = Object.freeze({ | |
AF: { | |
primary: "Afganistán", | |
secondary: "+93", | |
}, | |
AL: { | |
primary: "Albania", | |
secondary: "+355", | |
}, | |
DE: { |
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 PHONECODESEN = Object.freeze({ | |
AF: { | |
primary: "Afghanistan", | |
secondary: "+93", | |
}, | |
AX: { | |
primary: "Aland Islands", | |
secondary: "+358", | |
}, | |
AL: { |
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 PHONECODESBR = Object.freeze({ | |
AF: { | |
primary: "Afeganistão", | |
secondary: "+93", | |
}, | |
ZA: { | |
primary: "África do Sul", | |
secondary: "+27", | |
}, | |
AL: { |
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
[ | |
{ | |
"name": "Afganistán", | |
"code": "AF", | |
"phoneCode": "+93", | |
"flagEmoji": "🇦🇫" | |
}, | |
{ | |
"name": "Albania", | |
"code": "AL", |
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
[ | |
{ | |
"name": "Afghanistan", | |
"code": "AF", | |
"phoneCode": "+93", | |
"flagEmoji": "🇦🇫" | |
}, | |
{ | |
"name": "Aland Islands", | |
"code": "AX", |
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
[ | |
{ | |
"name": "Afeganistão", | |
"code": "AF", | |
"phoneCode": "+93", | |
"flagEmoji": "🇦🇫" | |
}, | |
{ | |
"name": "África do Sul", | |
"code": "ZA", |
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 React, { useState, useContext } from 'react'; | |
import Container from '@material-ui/core/Container'; | |
import Paper from '@material-ui/core/Paper'; | |
import AppBar from '@material-ui/core/AppBar'; | |
import Toolbar from '@material-ui/core/Toolbar'; | |
import IconButton from '@material-ui/core/IconButton'; | |
import Typography from '@material-ui/core/Typography'; | |
import MenuItem from '@material-ui/core/MenuItem'; | |
import Menu from '@material-ui/core/Menu'; | |
import Avatar from '@material-ui/core/Avatar'; |
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 React, { | |
useState, lazy, Suspense, useEffect, useContext, | |
} from 'react'; | |
import { BrowserRouter, Route, Switch } from 'react-router-dom'; | |
import CircularProgress from '@material-ui/core/CircularProgress'; | |
import { Hub } from 'aws-amplify'; | |
import { UserContext } from './context/UserContext'; | |
import { currentUserInfo } from './utils/auth'; | |
const Auth = lazy(() => import('./screens/Auth')); |
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 React, { useState, useEffect } from 'react'; | |
import Container from '@material-ui/core/Container'; | |
import Paper from '@material-ui/core/Paper'; | |
import Tabs from '@material-ui/core/Tabs'; | |
import Tab from '@material-ui/core/Tab'; | |
import Box from '@material-ui/core/Box'; | |
import { makeStyles, useTheme } from '@material-ui/core/styles'; | |
import * as auth from '../utils/auth'; | |
import styles from '../styles/auth'; | |
import ErrorMsg from './ErrorMsg'; |
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 React, { | |
useState, lazy, Suspense, useEffect, | |
} from 'react'; | |
import { BrowserRouter, Route, Switch } from 'react-router-dom'; | |
import CircularProgress from '@material-ui/core/CircularProgress'; | |
import { Hub } from 'aws-amplify'; | |
import { currentUserInfo } from './utils/auth'; | |
const Auth = lazy(() => import('./screens/Auth')); | |
const Home = lazy(() => import('./screens/Home')); |
NewerOlder