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 = { | |
| extends: ['airbnb', 'prettier', 'prettier/react'], | |
| parser: 'babel-eslint', | |
| env: { | |
| jest: true, | |
| jasmine: true | |
| }, | |
| plugins: ['detox', 'prettier', 'react-hooks'], | |
| rules: { |
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 from 'react'; | |
| import { StyleSheet, TouchableOpacity, Dimensions } from "react-native" | |
| import MidwayText from './midway-text'; | |
| // eslint-disable-next-line no-unused-vars | |
| import { primary, secondary } from "./types/button-types" | |
| const MidwayButton = props => { | |
| const { textStyle, ...buttonStyle } = props.type || primary; | |
| return ( |
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 { get } from 'axios'; | |
| import { authCredentials } from './auth-service'; | |
| const API_HOST = "https://fake-api.com" | |
| const overdraftDetalhes = async (username) => { | |
| console.log(username) | |
| let headerInfo = { 'correlationId': '458639' } | |