From d418dd77f23ab24e91dfebad94832f9496eb567d Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Mon, 28 Apr 2025 00:20:28 -0600 Subject: prettifier --- client/src/index.js | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'client/src/index.js') diff --git a/client/src/index.js b/client/src/index.js index 92a3918..a026940 100644 --- a/client/src/index.js +++ b/client/src/index.js @@ -1,23 +1,21 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './styles/index.css'; -import App from './App'; -import reportWebVitals from './utils/reportWebVitals'; -import { BrowserRouter } from 'react-router-dom';import { ConfigProvider } from '@arco-design/web-react'; -import enUS from '@arco-design/web-react/es/locale/en-US'; +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./styles/index.css"; +import App from "./App"; +import reportWebVitals from "./utils/reportWebVitals"; +import { BrowserRouter } from "react-router-dom"; +import { ConfigProvider } from "@arco-design/web-react"; +import enUS from "@arco-design/web-react/es/locale/en-US"; - - - -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render( - + - + , ); reportWebVitals(); -- cgit v1.2.3