Skip to content

Commit

Permalink
Update Web3-Wallet App.jsx
Browse files Browse the repository at this point in the history
Removed Fragment: Replaced the fragment (<>...</>) with a <div> to serve as a single parent container. This makes it clearer and more semantic.
Organized Imports: Maintained the order of imports for better readability.
General Structure: Ensured the overall structure is clean and easy to follow.
  • Loading branch information
IniyalPalanisamy authored Oct 18, 2024
1 parent f7d5fb8 commit 3598985
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import Navbar from './components/Navbar';

function App() {
return (
<>
<div>
<Analytics />
<Navbar/>
<Navbar />
<Routes>
<Route path="/" element={<Home />} />
<Route path="/dapp-browser" element={<DAppBrowserPage />} />
</Routes>
</>
</div>
);
}

Expand Down

0 comments on commit 3598985

Please sign in to comment.