1 changed files with 17 additions and 0 deletions
@ -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…
Reference in new issue