12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-update-author',
|
|
imports: [],
|
|
templateUrl: './update-author.html',
|
|
styleUrl: './update-author.css',
|
|
})
|
|
export class UpdateAuthor {
|
|
|
|
}
|