feat: bootstrap React frontend shell with API and realtime wiring

This commit is contained in:
root
2026-05-12 12:58:39 +00:00
parent 642b81564d
commit 196535ba5a
20 changed files with 3699 additions and 1 deletions

30
src/App.css Normal file
View File

@@ -0,0 +1,30 @@
.app {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
font-family: Inter, system-ui, sans-serif;
}
.row {
display: flex;
gap: 8px;
margin: 10px 0;
}
input {
flex: 1;
padding: 8px;
}
button {
padding: 8px 12px;
}
.messages {
margin-top: 1rem;
padding-left: 1rem;
}
.messages li {
margin: 4px 0;
}