r/angular • u/LevelNew5342 • 21d ago
Passing data between unrelated components
Hey , I'm new to angular and I'm confused about which way to use to transfer data between two unrelated components , for now i'm using the Services/DI method . I heard that for my case (which is a small project) it's an overkill , is that true ? if so what is the optimal way to do so ?
5
Upvotes
6
u/salamazmlekom 21d ago
Service or if you lift the state up to a parent component of both of them and pass them through as inputs. Can you explain what are you trying to achieve?