Adding the form and the api call

This commit is contained in:
2026-03-14 00:40:03 -04:00
parent 6ce0fc0768
commit 6b651d3c4f
9 changed files with 463 additions and 75 deletions

View File

@@ -2,9 +2,12 @@ import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import { QrProvider } from '@src/store/qrStore';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<QrProvider>
<App />
</QrProvider>
</StrictMode>
);