Using jquery selectors to render reactjs
This will do the trick
React.render(
<FilterableProductTable products={PRODUCTS} />,
$('#content')[0]
);
This will do the trick
React.render(
<FilterableProductTable products={PRODUCTS} />,
$('#content')[0]
);