mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-10 14:30:03 +00:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import { Component } from '@angular/core'
|
|
import { HostAppService } from 'services/hostApp'
|
|
|
|
@Component({
|
|
selector: 'title-bar',
|
|
template: require('./titleBar.pug'),
|
|
styles: [require('./titleBar.scss')],
|
|
})
|
|
export class TitleBarComponent {
|
|
constructor (public hostApp: HostAppService) {
|
|
}
|
|
}
|