26 lines
525 B
TypeScript
26 lines
525 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { RouterOutlet } from '@angular/router';
|
||
|
|
||
|
import { TabsComponent } from './editor/tabs/tabs.component';
|
||
|
import { EditorsComponent } from './editor/editors.component';
|
||
|
|
||
|
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
imports: [
|
||
|
TabsComponent,
|
||
|
EditorsComponent
|
||
|
],
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrl: './app.component.css',
|
||
|
host: {
|
||
|
'class': 'row'
|
||
|
}
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
title = 'Newton';
|
||
|
|
||
|
constructor() {}
|
||
|
|
||
|
}
|