added code formatation

This commit is contained in:
2025-07-27 11:06:42 +02:00
parent 30bdcb6e4e
commit a1f4de1a8b
2 changed files with 7 additions and 8 deletions

View File

@@ -10,5 +10,4 @@ function App() {
); );
} }
export default App; export default App;

View File

@@ -1,10 +1,10 @@
import { StrictMode } from 'react' import { StrictMode } from "react";
import { createRoot } from 'react-dom/client' import { createRoot } from "react-dom/client";
import './index.css' import "./index.css";
import App from './App.tsx' import App from "./App.tsx";
createRoot(document.getElementById('root')!).render( createRoot(document.getElementById("root")!).render(
<StrictMode> <StrictMode>
<App /> <App />
</StrictMode>, </StrictMode>
) );