/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/development/basic/next-dynamic/components/nested1.js
10 строк
159 B
JJ Kasper
Update test set-up to leverage playwright when able to (#28634)
13 сен 2021, 15:36
Не верифицирован
13 сен 2021, 15:36
a92a5ca
Код
Авторство
О чём код?
import dynamic from 'next/dynamic' const Nested2 = dynamic(() => import('./nested2')) export default () => ( <div> Nested 1 <Nested2 /> </div> )