mirror of
https://github.com/kuhyx/ARAI.git
synced 2026-07-04 11:43:15 +02:00
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
import { CaseInputComponent } from './case-input/case-input.component';
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
standalone: true,
|
|
imports: [RouterOutlet, CaseInputComponent, FlexLayoutModule],
|
|
templateUrl: './app.component.html',
|
|
styleUrl: './app.component.scss'
|
|
})
|
|
export class AppComponent {
|
|
title = 'arai-frontend';
|
|
}
|