mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 22:29:38 +00:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import { Component, HostBinding } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-browse',
|
|
templateUrl: './browse.component.html',
|
|
})
|
|
export class BrowseComponent {
|
|
@HostBinding('class.contents') contents = true
|
|
}
|