From 17c1d3d2070ee0c060c3e71a9e5868f004b2b034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Tue, 16 May 2023 19:52:29 -0600 Subject: Start point. Visit https://github.com/nvh95/vite-react-template-redux to see original template. --- src/App.jsx | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/App.jsx (limited to 'src/App.jsx') diff --git a/src/App.jsx b/src/App.jsx new file mode 100644 index 0000000..e28ac6e --- /dev/null +++ b/src/App.jsx @@ -0,0 +1,58 @@ +import React from "react"; +import logo from "./logo.svg"; +import { Counter } from "./features/counter/Counter"; +import "./App.css"; + +function App() { + return ( +
+
+ logo + +

+ Edit src/App.js and save to reload. +

+ + Learn + + React + + , + + Redux + + , + + Redux Toolkit + + , and + + React Redux + + +
+
+ ); +} + +export default App; -- cgit v1.2.3