12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import NachhilfeangebotCell from 'src/components/Nachhilfeangebot/NachhilfeangebotCell'
|
|
|
|
type NachhilfeangebotPageProps = {
|
|
id: number
|
|
}
|
|
|
|
const NachhilfeangebotPage = ({ id }: NachhilfeangebotPageProps) => {
|
|
return <NachhilfeangebotCell id={id} />
|
|
}
|
|
|
|
export default NachhilfeangebotPage
|