001package react4j.internal; 002 003import jsinterop.annotations.JsPackage; 004import jsinterop.annotations.JsType; 005 006/** 007 * Native support infrastructure for componentDidMount react lifecycle. 008 */ 009@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "?" ) 010public interface OnComponentDidMount 011{ 012 void componentDidMount(); 013}