[32788f42] feat(list-generator): create React app and FastAPI backend for PDF list generation

This commit is contained in:
2026-03-18 19:20:59 +00:00
parent 16cd760dac
commit 21c8ff66fd
30 changed files with 4525 additions and 0 deletions

View File

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