2025-07-24 15:01:11 +01:00
|
|
|
import Main from "@/templates/Main"
|
|
|
|
|
import { useParams } from "react-router"
|
2025-07-25 16:01:28 +01:00
|
|
|
import Page from "./Page"
|
2025-07-24 15:01:11 +01:00
|
|
|
export default function Entry() {
|
2025-07-25 15:22:21 +01:00
|
|
|
const { entry } = useParams()
|
2025-07-25 16:01:28 +01:00
|
|
|
return <Page titleComponent={<span>{entry?.replace(/_/g, " ")}</span>} />
|
2025-07-24 15:01:11 +01:00
|
|
|
}
|