eolas-app/src/templates/Entry.tsx

8 lines
249 B
TypeScript
Raw Normal View History

import Main from "@/templates/Main"
import { useParams } from "react-router"
import Page from "./Page"
export default function Entry() {
const { entry } = useParams()
return <Page titleComponent={<span>{entry?.replace(/_/g, " ")}</span>} />
}