Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

27 строки
711 B
Plaintext
Исходник Ответственный История

Этот файл содержит невидимые символы Юникода

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

https://reactjs.org/docs/portals.html
?
http://elijahmanor.com/talks/react-to-the-future/dist/#/slide/4/13
2020
https://blog.bitsrc.io/understanding-react-portals-ab79827732c7
https://nuancesprog.ru/p/11039/
2019
https://css-tricks.com/using-react-portals-to-render-children-outside-the-dom-hierarchy/
2017
https://hackernoon.com/using-a-react-16-portal-to-do-something-cool-2a2d627b0202
CodeDojo - Portals
https://www.youtube.com/watch?v=-qzRU7T4la0
sample
var heading = document.querySelector("#colorHeading");
 
class ColorLabel extends React.Component {
  render() {
    return ReactDOM.createPortal(
      ": " + this.props.color,
      heading
    );
  }
}