diff options
Diffstat (limited to 'src/App.jsx')
-rw-r--r-- | src/App.jsx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/App.jsx b/src/App.jsx index 7fbcae5..f12edb5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,13 +1,12 @@ import React from "react"; -import "./App.css"; import { Counter } from "./features/counter/Counter"; function App() { - return ( - <div> - <Counter /> - </div> - ); + return ( + <div> + <Counter /> + </div> + ); } export default App; |