Skip to content

Instantly share code, notes, and snippets.

View benmort's full-sized avatar

Benjamin Mort benmort

  • OPEN
  • Australia
View GitHub Profile
@benmort
benmort / App.js
Last active October 22, 2017 07:02
attempting to setup navigation from within redux actions... buut failing... any help would be awesome
import React, { Component } from 'react';
import AppNavigator from './AppNavigator';
import { Provider } from 'react-redux';
import store from './store';
export default class App extends Component {
render() {
return (
<Provider store={store}>
<AppNavigator/>