Skip to content

Commit

Permalink
Merge pull request #241 from CivicDataLab/d4d
Browse files Browse the repository at this point in the history
D4d
  • Loading branch information
PixeledCode authored Oct 16, 2023
2 parents 203f048 + 3c4ae09 commit d08d7f7
Show file tree
Hide file tree
Showing 61 changed files with 7,587 additions and 3,331 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { BarChart } from 'opub-viz/src';
import React from 'react';

export const BarView = React.forwardRef(({ data }: { data: any }, ref: any) => {
return (
<div ref={ref}>
<BarChart yAxis={data.xAxis} data={data.values} height="512px" />
</div>
);
});
Loading

0 comments on commit d08d7f7

Please sign in to comment.