From 6d6ac93406b524e0eafa249f94f20c5204274af1 Mon Sep 17 00:00:00 2001 From: dedenbangkit Date: Wed, 30 Aug 2023 13:36:58 +0700 Subject: [PATCH] [#1] Fix app.js --- frontend/src/App.js | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/frontend/src/App.js b/frontend/src/App.js index 4142961..0f989e5 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -1,25 +1,25 @@ import logo from "./logo.svg"; import "./App.css"; -const App = () { - return ( -
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
-
- ); -} +const App = () => { + return ( +
+
+ logo +

+ Edit src/App.js and save to reload. +

+ + Learn React + +
+
+ ); +}; export default App;