import PricePlanDetail from "@/lib/price-plan-detail/view" interface Props { params: { id: string } } const Page = ({params}: Props) => { const id = params.id return ( ) } export default Page