init project portal web
This commit is contained in:
16
app/main/price-plan/[id]/page.tsx
Normal file
16
app/main/price-plan/[id]/page.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import PricePlanDetail from "@/lib/price-plan-detail/view"
|
||||
|
||||
interface Props {
|
||||
params: {
|
||||
id: string
|
||||
}
|
||||
}
|
||||
|
||||
const Page = ({params}: Props) => {
|
||||
const id = params.id
|
||||
return (
|
||||
<PricePlanDetail id={id}/>
|
||||
)
|
||||
}
|
||||
|
||||
export default Page
|
||||
Reference in New Issue
Block a user