Skip to content

Instantly share code, notes, and snippets.

View mleader1's full-sized avatar

Lida Weng mleader1

View GitHub Profile
@bennadel
bennadel / app.component.ts
Last active June 12, 2021 10:42
Experimenting With Dynamic Template Rendering In Angular 2 RC 1
// Import the core angular services.
import { Component } from "@angular/core";
// Import the application components and services.
import { DynamicRepeaterComponent } from "./dynamic-repeater.component";
@Component({
selector: "my-app",
directives: [ DynamicRepeaterComponent ],