2024-03-09 13:08:35 +01:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
import { RouterOutlet } from '@angular/router';
|
2024-03-09 14:05:08 +01:00
|
|
|
import { CaseInputComponent } from './case-input/case-input.component';
|
|
|
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
2024-03-09 13:08:35 +01:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-root',
|
|
|
|
|
standalone: true,
|
2024-03-09 14:05:08 +01:00
|
|
|
imports: [RouterOutlet, CaseInputComponent, FlexLayoutModule],
|
2024-03-09 13:08:35 +01:00
|
|
|
templateUrl: './app.component.html',
|
|
|
|
|
styleUrl: './app.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class AppComponent {
|
|
|
|
|
title = 'arai-frontend';
|
|
|
|
|
}
|