aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx
diff options
context:
space:
mode:
authorAdrián Oliva <adrian.oliva@cimat.mx>2023-05-16 19:52:29 -0600
committerAdrián Oliva <adrian.oliva@cimat.mx>2023-05-16 19:52:29 -0600
commit17c1d3d2070ee0c060c3e71a9e5868f004b2b034 (patch)
treec0e7cf17901196b089291c63e8f97058068aed35 /src/App.jsx
downloadToDo-App-FE-17c1d3d2070ee0c060c3e71a9e5868f004b2b034.tar.gz
ToDo-App-FE-17c1d3d2070ee0c060c3e71a9e5868f004b2b034.zip
Start point.
Visit https://github.com/nvh95/vite-react-template-redux to see original template.
Diffstat (limited to 'src/App.jsx')
-rw-r--r--src/App.jsx58
1 files changed, 58 insertions, 0 deletions
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 (
+ <div className="App">
+ <header className="App-header">
+ <img src={logo} className="App-logo" alt="logo" />
+ <Counter />
+ <p>
+ Edit <code>src/App.js</code> and save to reload.
+ </p>
+ <span>
+ <span>Learn </span>
+ <a
+ className="App-link"
+ href="https://reactjs.org/"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ React
+ </a>
+ <span>, </span>
+ <a
+ className="App-link"
+ href="https://redux.js.org/"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ Redux
+ </a>
+ <span>, </span>
+ <a
+ className="App-link"
+ href="https://redux-toolkit.js.org/"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ Redux Toolkit
+ </a>
+ ,<span> and </span>
+ <a
+ className="App-link"
+ href="https://react-redux.js.org/"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ React Redux
+ </a>
+ </span>
+ </header>
+ </div>
+ );
+}
+
+export default App;