Skip to content

Instantly share code, notes, and snippets.

View tisufa's full-sized avatar
:atom:
- nobody

Titus Sutio Fanpula tisufa

:atom:
- nobody
View GitHub Profile
@tisufa
tisufa / example.component.ts
Created December 21, 2019 04:35
Example Component
import { Component, ViewEncapsulation } from '@angular/core';
import { AppPopupWorkflowService } from 'app/core/services/app-popup/app-popup-workflow.service';
import { Workflow } from 'app/core/bean/workflow';
@Component({
templateUrl: 'example.component.html',
styleUrls: ['./example.component.scss'],
encapsulation: ViewEncapsulation.None
})
@tisufa
tisufa / example.component.html
Created December 21, 2019 04:37
example.component.html
<div id="example-component">
<button class="btn btn-primary btn-sm" (click)="doOpenWorkflowPopup()">Open Popup Workflow</button>
</div>