mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ds-register-email',
|
|
templateUrl: './register-email.component.html'
|
|
})
|
|
/**
|
|
* Component responsible the email registration step when registering as a new user
|
|
*/
|
|
export class RegisterEmailComponent {
|
|
|
|
}
|