Newton-Editor/src/app/editor/tabs/tab/tab.component.ts
2025-05-27 22:40:42 -05:00

30 lines
416 B
TypeScript

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() {
}
}