2025-05-28 02:10:45 +00:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
2025-06-12 07:45:17 +00:00
|
|
|
import { InfoBarComponent } from './editor/info-bar/info-bar.component';
|
2025-05-28 02:10:45 +00:00
|
|
|
import { TabsComponent } from './editor/tabs/tabs.component';
|
|
|
|
import { EditorsComponent } from './editor/editors.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
|
|
|
imports: [
|
2025-06-12 07:45:17 +00:00
|
|
|
InfoBarComponent,
|
2025-05-28 02:10:45 +00:00
|
|
|
TabsComponent,
|
|
|
|
EditorsComponent
|
|
|
|
],
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrl: './app.component.css',
|
|
|
|
host: {
|
|
|
|
'class': 'row'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
export class AppComponent {
|
|
|
|
title = 'Newton';
|
|
|
|
|
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
}
|