perf: streamer la liste des morceaux sans bloquer le rendu de la page
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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} />
|
||||
}
|
||||
Reference in New Issue
Block a user