aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/shared/signup-step-title.component.ts
blob: 9664eb7f36adc8b37c3cdd341ad38a0b29d286b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Component, Input } from '@angular/core'
import { MascotImageName } from './signup-mascot.component'

@Component({
  selector: 'my-signup-step-title',
  templateUrl: './signup-step-title.component.html',
  styleUrls: [ './signup-step-title.component.scss' ]
})
export class SignupStepTitleComponent {
  @Input() mascotImageName: MascotImageName

}