import * as React from 'react'; import { autoSync } from '../../autoSync'; import { ExampleFrame } from '../../ExampleFrame'; import { AppState } from '../state'; const App: React.SFC = (props) => (

the new stuff

{props.status}

 
{props.imageUrl && }

old school counter

value: {props.counter}

); const connected = autoSync(AppState)(App); export { connected as App };