From f8faf558167101bdedb69e249a6ffde08b0e57a7 Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sat, 23 Jul 2022 12:27:16 -0500 Subject: [PATCH] square launcher --- squarenotsquare/Launcher.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 squarenotsquare/Launcher.js diff --git a/squarenotsquare/Launcher.js b/squarenotsquare/Launcher.js new file mode 100644 index 0000000..f4194ef --- /dev/null +++ b/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 ( + + + + ) + } +} \ No newline at end of file