metadata component skeletons
This commit is contained in:
parent
20dbbbf956
commit
e63c2e6f08
9 changed files with 162 additions and 12 deletions
|
|
@ -1,9 +1,17 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { Component, computed } from '@angular/core';
|
||||
import { MerchantService } from '../../../services/merchant.service';
|
||||
import { DividerComponent } from '../../divider/divider.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-merchants',
|
||||
imports: [],
|
||||
imports: [
|
||||
DividerComponent
|
||||
],
|
||||
templateUrl: './merchants.component.html',
|
||||
styleUrl: './merchants.component.scss'
|
||||
})
|
||||
export class MerchantsComponent { }
|
||||
export class MerchantsComponent {
|
||||
protected merchants = computed(() => this.merchantService.merchants());
|
||||
|
||||
public constructor(private readonly merchantService: MerchantService) { }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue