Files
pawol.nu/components/teks/an-teks.js
T
2024-01-23 04:38:02 +04:00

20 lines
339 B
JavaScript

'use client'
import PropTypes from 'prop-types'
import Teks from './teks'
export default function AnTeks({parole, paroleId}) {
return (
<Teks
parole={parole}
paroleId={paroleId}
commentaires={parole?.commentaires.data}
/>
)
}
AnTeks.propTypes = {
parole: PropTypes.object,
paroleId: PropTypes.number
}