9d3903a1db
This is an initial implement that at the moment constructs the required SVG layout to be used by D3.
27 lines
429 B
JavaScript
27 lines
429 B
JavaScript
const ReactRedux = require('react-redux');
|
|
const React = require('react');
|
|
const Links = require('./links');
|
|
const Nodes = require('./nodes');
|
|
|
|
const {
|
|
connect
|
|
} = ReactRedux;
|
|
|
|
const Component = (props) =>
|
|
<svg width='960' height='600'>
|
|
<Links {...props}/>
|
|
<Nodes {...props}/>
|
|
</svg>;
|
|
|
|
const mapStateToProps = ({
|
|
data
|
|
}) => {
|
|
return {
|
|
data
|
|
};
|
|
};
|
|
|
|
module.exports = connect(
|
|
mapStateToProps
|
|
)(Component);
|