Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created October 9, 2021 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/553a41cf78ae4c3e5c1256352db11acf to your computer and use it in GitHub Desktop.
Save ssougnez/553a41cf78ae4c3e5c1256352db11acf to your computer and use it in GitHub Desktop.
import { Directive, Input } from '@angular/core';
@Directive({})
export class BaseHistoryEntryComponent<T> {
@Input()
public data: T;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment