16 lines
318 B
TypeScript
16 lines
318 B
TypeScript
import {Component} from "@angular/core";
|
|
import {NgOptimizedImage} from "@angular/common";
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: 'app-body',
|
|
templateUrl: './body.component.html',
|
|
styleUrls: ['./body.component.scss'],
|
|
imports: [
|
|
NgOptimizedImage
|
|
]
|
|
})
|
|
|
|
export class BodyComponent {
|
|
|
|
} |