Skip to content

Instantly share code, notes, and snippets.

View PatNeedham's full-sized avatar

Pat Needham PatNeedham

View GitHub Profile
AWSTemplateFormatVersion: 2010-09-09
Parameters:
stackID:
Type: String
AllowedPattern: '^[a-zA-Z0-9-]+$'
DomainName:
Type: String
AllowedPattern: '.*'
route53HostedZoneId:
Type: String
@PatNeedham
PatNeedham / App.js
Created October 5, 2017 04:15
The App.js file I used for the react-navigation pull request #2695
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
View,
Button
} from 'react-native';
import { StackNavigator, TabNavigator } from 'react-navigation';
import Dimensions from 'Dimensions'