infernojs / inferno

:fire: An extremely fast, React-like JavaScript library for building modern user interfaces
https://infernojs.org
MIT License
16.1k stars 635 forks source link

What does findDOMNode return? #1631

Closed farooqkz closed 1 year ago

farooqkz commented 1 year ago

It seems it returns Node. What is this Node exactly?

Havunen commented 1 year ago

It is javascript object representing a html element in the DOM https://developer.mozilla.org/en-US/docs/Web/API/Node

farooqkz commented 1 year ago

Thank you