aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/App.jsx11
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;