diff --git a/squarenotsquare/Launcher.js b/squarenotsquare/Launcher.js index f4194ef..b77bcda 100644 --- a/squarenotsquare/Launcher.js +++ b/squarenotsquare/Launcher.js @@ -1,17 +1,13 @@ -import React, {Component} from 'react'; +import React from 'react'; import {Provider} from 'react-redux'; import SquareStack from './navigation/SquareStack'; -export default class SquareNotSquare extends Component { - constructor(props) { - super(props); - } +function SquareNotSquare(props){ + return ( + + + + ) +} - render() { - return ( - - - - ) - } -} \ No newline at end of file +export default SquareNotSquare; \ No newline at end of file