Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created April 18, 2020 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marshallmurphy/125dec773fb8bfdc0ca6e3758da756f9 to your computer and use it in GitHub Desktop.
Save marshallmurphy/125dec773fb8bfdc0ca6e3758da756f9 to your computer and use it in GitHub Desktop.
// BarGraph/Columns.js
import React from 'react';
import { ART } from 'react-native';
import { scaleBand, scaleLinear } from 'd3-scale';
const {
Group,
Shape,
Path,
Surface
} = ART;
export default function Columns({ data, width, height, color }) {
return (
<Surface width={width} height={height}>
</Surface>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment