Angular - Standalone Components
What will happen if you try to use a standalone component without importing it in another standalone component's imports array?
@Component({
selector: 'app-parent',
standalone: true,
template: ` `,
imports: []
})
export class ParentComponent {}