mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-23 10:55:07 +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 {
|
|
|
|
}
|