Skip to content

Instantly share code, notes, and snippets.

View ohenrique's full-sized avatar

Henrique Oliveira ohenrique

  • RecargaPay
  • São Paulo, Brazil
View GitHub Profile
module.exports = {
extends: ['airbnb', 'prettier', 'prettier/react'],
parser: 'babel-eslint',
env: {
jest: true,
jasmine: true
},
plugins: ['detox', 'prettier', 'react-hooks'],
rules: {
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 (
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' }