12 lines
No EOL
248 B
TypeScript
12 lines
No EOL
248 B
TypeScript
"use client"
|
|
|
|
import { ServicesShell } from "@/components/front/services"
|
|
import { useParams } from "next/navigation"
|
|
|
|
export default function Service() {
|
|
const slug = useParams().slug
|
|
|
|
return (
|
|
<ServicesShell slug={slug as string} />
|
|
)
|
|
} |