diff options
Diffstat (limited to '')
-rw-r--r-- | src/App.jsx | 51 |
1 files changed, 3 insertions, 48 deletions
diff --git a/src/App.jsx b/src/App.jsx index e28ac6e..7fbcae5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,56 +1,11 @@ import React from "react"; -import logo from "./logo.svg"; -import { Counter } from "./features/counter/Counter"; import "./App.css"; +import { Counter } from "./features/counter/Counter"; 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> + <Counter /> </div> ); } |