From e2fa750c25f5c21f465e34cf384dce0de484111e Mon Sep 17 00:00:00 2001 From: Hari Dev Date: Sat, 21 Dec 2024 10:55:03 +0530 Subject: [PATCH] Modified into arrow function --- frontend/src/App.jsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index cfd5fda..1351e1b 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1,12 +1,8 @@ -import { useState } from 'react' - - - -function App() { - +import React from 'react' +const App = () => { return ( - <> +
App
) }