Yes ,,, In 14 version angular given option to work as standalone now no need to use module…its really new journey and game changer for angular roadmap.
So for converting existing component
you need to put standalone true.
@Component({
standalone:true,
selector: ‘app-coins’,
imports:[CommonModule],
providers:[],
templateUrl: ‘./coins.component.html’,
styleUrls: [‘./coins.component.scss’]
})
It…