| import { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { MatButtonModule } from '@angular/material/button'; | |
| @NgModule({ | |
| declarations: [], | |
| imports: [ | |
| CommonModule, | |
| ], | |
| exports: [ | |
| MatButtonModule, | |
| ] | |
| }) | |
| export class PleSharedMaterialModule { } |