> Unofficial Line Flex Message component using angular
npm install ngx-flex-messages> Unofficial Line Flex Message component using angular

sh
npm i ngx-flex-messages --save
`Add wanted package to NgModule imports
`ts
import { NgxFlexMessagesModule } from 'ngx-flex-messages';
@NgModule({
...
imports: [
...
NgxFlexMessagesModule,
...
]
...
})
`Add style to projects in
angular.json
`json
{
...
"styles": [
"../node_modules/ngx-flex-messages/assets/global.scss",
"styles.scss"
],
...
}
`
Add component to your page
`html
[data]="json"
(action)="onClickAction($event)"
>
``