diff --git a/Frameworks/Feed/Bundle/Sources/Coordinators/FeedListCoordinator.swift b/Frameworks/Feed/Bundle/Sources/Coordinators/FeedListCoordinator.swift index 2562825..6c6a162 100644 --- a/Frameworks/Feed/Bundle/Sources/Coordinators/FeedListCoordinator.swift +++ b/Frameworks/Feed/Bundle/Sources/Coordinators/FeedListCoordinator.swift @@ -44,3 +44,19 @@ public final class FeedListCoordinator: Coordinator { } } + +// MARK: - FeedListCoordination +extension FeedListCoordinator: FeedListCoordination { + + // MARK: Functions + func open(_ item: Review) { + present( + child: FeedItemCoordinator( + item: item, + router: router + ), + animated: true + ) + } + +}