[accelerator] concept accelerator a/b ctas

This commit is contained in:
nymkappa
2024-04-13 16:11:49 +09:00
committed by Mononaut
parent de00d49d7b
commit 5f2d7b32ae
5 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Component, OnInit, OnDestroy } from '@angular/core';
@Component({
selector: 'app-accelerate-checkout',
templateUrl: './accelerate-checkout.component.html',
styleUrls: ['./accelerate-checkout.component.scss']
})
export class AccelerateCheckout implements OnInit, OnDestroy {
constructor() {
}
ngOnInit() {
}
ngOnDestroy() {
}
}