const ErrorMessagesComponent = {
template: `
This field is required.
This field is too short.
This needs to be a valid email.
`,
replace: true,
bindings: {
input: '<',
form: '<',
},
controller() {},
};
export default function init(ngModule) {
ngModule.component('errorMessages', ErrorMessagesComponent);
}
init.init = true;