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
'use strict'; | |
/* global __base */ | |
let winston = require('winston'), | |
path = require('path'), | |
utils = require(__base + 'app/helpers/utils'), | |
util = require('util'); | |
//winston logging for papertrail | |
require('winston-papertrail').Papertrail; |
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, { Component } from 'react'; | |
import { Grid, Col, Row } from 'react-native-easy-grid'; | |
import * as renders from './renderedComponents'; | |
import { Field, reduxForm } from 'redux-form'; | |
import normalizePhone from './normalizePhone'; | |
import { createRouter, withNavigation } from '@exponent/ex-navigation'; | |
import { | |
Container, | |
Header, | |
Title, |