aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx
diff options
context:
space:
mode:
authorAdrián Oliva <adrian.oliva@cimat.mx>2023-05-17 18:33:41 -0600
committerAdrián Oliva <adrian.oliva@cimat.mx>2023-05-17 18:33:41 -0600
commit22b15f833d388d2fed12b7f4dcd917c57712cbec (patch)
tree24b7047e5e4f8193dd42fd7fed6c70e4e2dd0cec /src/App.jsx
parentf929e5156cb1941beb2f5329e7b9b8fae4c7691b (diff)
downloadToDo-App-FE-22b15f833d388d2fed12b7f4dcd917c57712cbec.tar.gz
ToDo-App-FE-22b15f833d388d2fed12b7f4dcd917c57712cbec.zip
Added bootstrap library.
We now have better looking assets!
Diffstat (limited to 'src/App.jsx')
-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;