cs-2022-class-profile/components/Histogram.tsx

8 lines
223 B
TypeScript
Raw Normal View History

2022-09-28 18:34:37 -04:00
import React from "react";
import { BarGraphVertical, BarGraphProps } from "./BarGraph";
export function Histogram(props: BarGraphProps) {
return <BarGraphVertical {...props} barPadding={0} shiftBottomAxis={true} />;
}