/
ashipov
/
react
Обзор
Документация
Войти
/
ashipov
/
react
Код
Запросы
0
Задачи 2.0
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
packages/shared/ReactInstanceMap.js
24 строки
709 B
Jan Kassens
remove unstable_renderSubtreeIntoContainer (#29771)
12 июн 2024, 18:14
Не верифицирован
12 июн 2024, 18:14
93826c8
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * `ReactInstanceMap` maintains a mapping from a public facing stateful * instance (key) and the internal representation (value). This allows public * methods to accept the user facing instance as an argument and map them back * to internal methods. * * Note that this module is currently shared and assumed to be stateless. * If this becomes an actual Map, that will break. */ export function get(key) { return key._reactInternals; } export function set(key, value) { key._reactInternals = value; }