feat: add barcode reader

This commit is contained in:
2026-01-02 23:32:01 -03:00
parent 7c6045f1b3
commit 49b9389532
4 changed files with 327 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { App } from './app/app';
import { BarcodeReader } from './app/web-components/barcode-reader';
bootstrapApplication(App, appConfig)
.then(() => customElements.define('barcode-reader', BarcodeReader))
.catch((err) => console.error(err));