Better handling of react app

This commit is contained in:
2026-01-21 14:21:11 -05:00
parent 3c489b7c32
commit ce4f8ba7df
29 changed files with 810 additions and 1180 deletions

View File

@@ -1,11 +1,7 @@
import React from 'react';
import {createRoot} from 'react-dom/client';
import './App.css';
import App from './App';
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css"; // optional keep CRA default styling
const root = createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
const container = document.getElementById("root");
createRoot(container).render(<App />);