Angular - Standalone Components
What is wrong with this standalone pipe declaration?
When used in a component without importing it, what error occurs?
@Pipe({name: 'reverse', standalone: true})
export class ReversePipe {
transform(value: string): string {
return value.split('').reverse().join('');
}
}When used in a component without importing it, what error occurs?
