Skip to content

Instantly share code, notes, and snippets.

@frankzickert
Last active July 8, 2019 14:01
Show Gist options
  • Save frankzickert/c7fa164f57f5ba3b5ffe275bff4fafcb to your computer and use it in GitHub Desktop.
Save frankzickert/c7fa164f57f5ba3b5ffe275bff4fafcb to your computer and use it in GitHub Desktop.
/** src/index.tsx */
import * as React from 'react';
import {
Environment,
Route,
SinglePageApp
} from "infrastructure-components";
import App from './App';
import './index.css';
export default (
<SinglePageApp
stackName = "cra-example"
buildPath = 'build'
region='us-east-1'>
<Environment
name="dev"
/>
<Route
path='/'
name='Deployable Create-React-App'
component={App}
/>
</SinglePageApp>);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment