import { PageSection } from "@/components/section/PageSection"; import { useCurrentMarketingPlan } from "@/features/plan/hooks/useCurrentMarketingPlan"; import { ChannelStrategyGrid } from "@/features/plan/ui/channelStrategy/ChannelStrategyGrid"; export function PlanChannelStrategySection() { const { data, error } = useCurrentMarketingPlan(); if (error || !data) { return null; } return ( ); }