Adding the skeleton QR code

This commit is contained in:
2026-03-14 00:24:58 -04:00
commit 6ce0fc0768
27 changed files with 7628 additions and 0 deletions

12
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,12 @@
import QRComponent from '@templates/QrCodeComponent';
import styles from '@styles/App.module.scss';
function App() {
return (
<div className={styles.body}>
<QRComponent />
</div>
);
}
export default App;