/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/slots/createSlot.ts
10 строк
264 B
Valerii Sidorenko
feat: add multi clusters support (#701)
09 фев 2024, 15:34
Не верифицирован
09 фев 2024, 15:34
429aa0e
Код
Авторство
О чём код?
import type {SlotComponent} from './types'; export function createSlot<Props = {}, Type = never>(name = 'unknown') { const Slot: SlotComponent<Props, Type> = () => null; Slot.displayName = `Slot(${name})`; Slot.__slotName = name; return Slot; }