From ff4481a7b6f26bf1b32fcf14a6e36a48ed138a7e Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Wed, 27 Jul 2022 23:00:50 -0500 Subject: [PATCH] Functional launcher --- squarenotsquare/Launcher.js | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) 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