I am new to Angular and just started learning. I have a situation where I like to use the same component across multiple projects.
Let's say, I have a CustomerComponent
and it does CRUD operations.
Now I want to use the CustomerComponent
in project A and project B. The reason is that if I have to modify the CustomerComponent
, I can modify only in one place instead of multiple projects.
Is it possible to create a component like that?
If it is possible, please guide me how I can accomplish this one.
Thanks in advance.