11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-changelog',
|
|
standalone: true,
|
|
templateUrl: './changelog.component.html',
|
|
styleUrls: ['./changelog.component.css']
|
|
})
|
|
export class ChangelogComponent {
|
|
|
|
}
|