Initial React Kanban app with Docker

This commit is contained in:
2026-03-11 17:23:32 +00:00
commit 1b97b8cfe1
12 changed files with 2075 additions and 0 deletions

10
src/main.jsx Normal file
View File

@@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>
);