Add merge ops (not yet import py api)

This commit is contained in:
pakintada@gmail.com 2023-09-19 15:21:08 +07:00
parent a6a7397dce
commit 850c483d5b
13 changed files with 220 additions and 1676 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,16 @@
import { Component } from '@angular/core';
import { MergeComponent } from '../merge/merge.component';
@Component({
selector: 'app-changelog',
standalone: true,
templateUrl: './changelog.component.html',
styleUrls: ['./changelog.component.css']
styleUrls: ['./changelog.component.css'],
imports: [MergeComponent]
})
export class ChangelogComponent {
fetchLog(){
// TODO: Fetch changelog.html
fetch("/changelog")
}
}