14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
import {notFound} from 'next/navigation'
|
|
import {jwennTeks} from '../../lib/oki-api'
|
|
import TeksDrawer from './teks-drawer'
|
|
|
|
export default async function TeksDrawerLoader() {
|
|
const teks = await jwennTeks()
|
|
|
|
if (!teks) {
|
|
notFound()
|
|
}
|
|
|
|
return <TeksDrawer paroles={teks} />
|
|
}
|