15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
import { Component } from '@angular/core';
|
|
import {ProvidersCardForm} from "./providers-card-form/providers-card-form";
|
|
|
|
@Component({
|
|
selector: 'app-providers',
|
|
imports: [
|
|
ProvidersCardForm
|
|
],
|
|
templateUrl: './providers.html',
|
|
styleUrl: './providers.css',
|
|
})
|
|
export class Providers {
|
|
|
|
}
|