You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scrutiny/webapp/frontend/src/@treo/components/card/card.module.ts

19 lines
365 B

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TreoCardComponent } from '@treo/components/card/card.component';
@NgModule({
declarations: [
TreoCardComponent
],
imports : [
CommonModule
],
exports : [
TreoCardComponent
]
})
export class TreoCardModule
{
}