2023-07-22 13:56:37 +04:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
|
import Teks from './teks'
|
|
|
|
|
|
|
|
|
|
export default function AnTeks({parole, paroleId}) {
|
|
|
|
|
return (
|
|
|
|
|
<Teks
|
|
|
|
|
parole={parole}
|
|
|
|
|
paroleId={paroleId}
|
2026-04-21 19:16:11 +04:00
|
|
|
commentaires={parole?.commentaires}
|
2023-07-22 13:56:37 +04:00
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AnTeks.propTypes = {
|
|
|
|
|
parole: PropTypes.object,
|
2024-01-23 04:38:02 +04:00
|
|
|
paroleId: PropTypes.number
|
2023-07-22 13:56:37 +04:00
|
|
|
}
|