14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
"use client"
|
|
|
|
import CarType_Header from "@/components/carTypePageParts/carType_head";
|
|
import { useParams } from "next/navigation"
|
|
|
|
export default function CartType() {
|
|
const router = useParams();
|
|
return (
|
|
<div>
|
|
<CarType_Header/>
|
|
</div>
|
|
)
|
|
}
|