Skip to content

Instantly share code, notes, and snippets.

@caspg
Created December 10, 2016 19:00
Show Gist options
  • Save caspg/f4960da6f6588acfb151003f041c8be7 to your computer and use it in GitHub Desktop.
Save caspg/f4960da6f6588acfb151003f041c8be7 to your computer and use it in GitHub Desktop.
// ....
import Axes from '../Axes'
// ...
export default class Chart extends Component {
//...
render() {
// ...
return (
<svg width={svgDimensions.width} height={svgDimensions.height}>
<Axes
scales={{ xScale, yScale }}
margins={margins}
svgDimensions={svgDimensions}
/>
</svg>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment