mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 22:29:38 +00:00
11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
import { Component } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-library',
|
|
templateUrl: './library.component.html',
|
|
standalone: false,
|
|
})
|
|
export class LibraryComponent {
|
|
|
|
}
|