Skip to content

Commit

Permalink
formated the code
Browse files Browse the repository at this point in the history
  • Loading branch information
somu-code committed Jan 11, 2024
1 parent ba4d935 commit 40fe73c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions client/admin-client/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/** @format */
import HomePage from './components/HomePage';
import HomePage from "./components/HomePage";

function App() {
return (
<div>
<HomePage />
</div>
);
return (
<div>
<HomePage />
</div>
);
}

export default App;
14 changes: 7 additions & 7 deletions client/admin-client/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/** @format */

import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.jsx';
import './index.css';
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import { Navbar } from './components/Navbar.tsx';
import SignInPage from './components/SignInPage.tsx';
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.jsx";
import "./index.css";
import { BrowserRouter, Route, Routes } from "react-router-dom";
import { Navbar } from "./components/Navbar.tsx";
import SignInPage from "./components/SignInPage.tsx";

ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
Expand Down

0 comments on commit 40fe73c

Please sign in to comment.