react4j.core.ReactElement Maven / Gradle / Ivy
package react4j.core;
import jsinterop.annotations.JsType;
@JsType( isNative = true )
public class ReactElement
{
public T type;
public P props;
public String key;
/**
* Objects of this class cannot be directly instantiated by the user.
*/
protected ReactElement()
{
}
}