initial push
This commit is contained in:
30
src/app/editor/tabs/tab/tab.component.ts
Normal file
30
src/app/editor/tabs/tab/tab.component.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
|
||||
|
||||
@Component({
|
||||
selector: 'tab',
|
||||
standalone: true,
|
||||
imports: [
|
||||
],
|
||||
templateUrl: './tab.component.html',
|
||||
styleUrl: './tab.component.css',
|
||||
host: {
|
||||
'class': 'col'
|
||||
// 'class': 'col tab'
|
||||
}
|
||||
})
|
||||
export class TabComponent {
|
||||
|
||||
title: string;
|
||||
|
||||
|
||||
constructor() {
|
||||
this.title = "[NO TITLE]";
|
||||
}
|
||||
|
||||
ngOnDestroy() {
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user