Skip to content

Instantly share code, notes, and snippets.

@eric-burel
Created April 14, 2018 09:45
Show Gist options
  • Save eric-burel/8c0d87a9d906e2b38b48d716833c693f to your computer and use it in GitHub Desktop.
Save eric-burel/8c0d87a9d906e2b38b48d716833c693f to your computer and use it in GitHub Desktop.
geeglee-dataviz-svg-component
import React from 'react'
const Rect = (props) => <rect {...props}></rect>
export const MyFirstAwesomeChart = ({x, y}) =>
<svg>
<Rect x={x} y={y} width={100} height={50} />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment