Add editorconfig configuration

This commit is contained in:
2023-10-17 14:16:21 +07:00
parent 170b2b53f1
commit 55c708ebec
3 changed files with 18 additions and 6 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import './index.css';
ReactDOM.createRoot(document.getElementById("root")!).render(
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,