mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* chore: enable strict mode * refactor: remove sync data access from PatchDbService * launchable even when no LAN url Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import { Component, Input } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'qr',
|
|
templateUrl: './qr.component.html',
|
|
styleUrls: ['./qr.component.scss'],
|
|
})
|
|
export class QRComponent {
|
|
@Input() text!: string
|
|
}
|