11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-symptome',
|
|
standalone: false,
|
|
templateUrl: './symptome.component.html',
|
|
styleUrl: './symptome.component.css'
|
|
})
|
|
export class SymptomeComponent {
|
|
|
|
}
|