UNPKG

meteor-angular2-accounts-material-ui

Version:
16 lines (13 loc) 272 B
import { Component } from '@angular/core'; import {Auth} from './auth'; const template = ` <auth [mode]="mode"></auth> `; @Component({ selector: 'signup', directives: [Auth], template , }) export class Signup { public mode: string = 'signup'; }