mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: add eslint linter
This commit is contained in:
@@ -1,23 +1,21 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App";
|
||||
import {HashRouter} from "react-router-dom";
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
import App from './App'
|
||||
import {HashRouter} from 'react-router-dom'
|
||||
|
||||
import 'antd/dist/reset.css';
|
||||
import 'antd/dist/reset.css'
|
||||
import './i18n'
|
||||
|
||||
import './index.css'
|
||||
|
||||
|
||||
const root = ReactDOM.createRoot(document.getElementById("root") as HTMLElement)
|
||||
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
|
||||
|
||||
function Index() {
|
||||
|
||||
return (
|
||||
<HashRouter>
|
||||
<App/>
|
||||
</HashRouter>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
root.render(<Index/>)
|
||||
|
||||
Reference in New Issue
Block a user