build: scaffold workflow console workspace

This commit is contained in:
lda
2026-07-02 11:05:06 +07:00 Verified
parent 98f85f6726
commit 7583d41b17
17 changed files with 2101 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
export function App() {
return <h1>lda.chat Workflow Console</h1>;
}
+9
View File
@@ -0,0 +1,9 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { App } from "./app/App";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);
+1
View File
@@ -0,0 +1 @@
import "@testing-library/jest-dom/vitest";