Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

import {Component, Input, OnInit} from '@angular/core';
@Component({
selector: 'load-me',
template: `<h3 style="background-color: #00b0e8">
I am a component loaded from a Gist! {{inputText}}</h3>`
})
export class LoadMeComp implements OnInit{
@Input() inputText: string;
constructor() {