/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/List/ListContext.js
13 строк
253 B
Albert Yu
[core] Prepend "use-client" directive + add docs and examples for using MUI libraries with Next.js App Router (#37656)
11 июл 2023, 13:42
Не верифицирован
11 июл 2023, 13:42
a4afa9f
Код
Авторство
О чём код?
'use client'; import * as React from 'react'; /** * @ignore - internal component. */ const ListContext = React.createContext({}); if (process.env.NODE_ENV !== 'production') { ListContext.displayName = 'ListContext'; } export default ListContext;