RS
Size: a a a
RS
RP
DS
А
1
DS
1
DS
V
DS
V
V
1
D
V
V
DS
N
import ReactDOM from 'react-dom';
import React, {Component} from 'react';
import FormContainer from "./FormContainer";
var products = [{a:1,b:2,c:3}];
class App extends Component {
render() {
return (
<div className="row">
<FormContainer products={products}/>
</div>
);
}
};
ReactDOM.render(<App/>, document.getElementById('App'));𝓐
V