React

React is the entry point to the React library.

//ES6
import React from 'react'
//ES5 with npm, you can write 
var React = require('react')
//React.createElement(type, [props],  [...children])
var ProductCustomizer = React.createElement(
    "div",
    { className: "customizer" },
    "Product customizer will go here"
);

results matching ""

    No results matching ""