/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
packages/react/src/components/Preferences.tsx
16 строк
386 B
Adam Chmara
chore(root): apply biome formatter & linter fixes NV-6436 (#8838)
31 июл 2025, 14:59
Не верифицирован
31 июл 2025, 14:59
855fb8f
Код
Авторство
О чём код?
import React from 'react'; import { useNovuUI } from '../context/NovuUIContext'; import { Mounter } from './Mounter'; export const Preferences = () => { const { novuUI } = useNovuUI(); const mount = React.useCallback((element: HTMLElement) => { return novuUI.mountComponent({ name: 'Preferences', element, }); }, []); return <Mounter mount={mount} />; };