add js and ts lints
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import { App } from './App'
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom";
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
import { App } from "./App";
|
||||
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>,
|
||||
document.getElementById('root'),
|
||||
)
|
||||
})
|
||||
document.getElementById("root")
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user