Browse Source

square launcher

pull/1/head
Tim Glasgow 2 years ago
parent
commit
f8faf55816
  1. 17
      squarenotsquare/Launcher.js

17
squarenotsquare/Launcher.js

@ -0,0 +1,17 @@
import React, {Component} from 'react';
import {Provider} from 'react-redux';
import SquareStack from './navigation/SquareStack';
export default class SquareNotSquare extends Component {
constructor(props) {
super(props);
}
render() {
return (
<Provider store={this.props.squareStore}>
<SquareStack />
</Provider>
)
}
}
Loading…
Cancel
Save