use wildcard form for re-exports

This commit is contained in:
Ryan Vazquez
2020-10-26 17:58:42 -04:00
parent ff0dc1be98
commit 157063409b
4 changed files with 6 additions and 4 deletions
@@ -15,3 +15,4 @@
*/
export { BarChart } from './BarChart';
export type { BarChartProps } from './BarChart';
@@ -15,3 +15,4 @@
*/
export { CostGrowth } from './CostGrowth';
export type { CostGrowthProps } from './CostGrowth';
@@ -20,7 +20,7 @@ import LensIcon from '@material-ui/icons/Lens';
import HelpOutlineOutlinedIcon from '@material-ui/icons/HelpOutlineOutlined';
import { useCostGrowthLegendStyles } from '../../utils/styles';
type LegendItemProps = {
export type LegendItemProps = {
title: string;
tooltipText?: string;
markerColor?: string;
@@ -14,7 +14,7 @@
* limitations under the License.
*/
export { BarChart } from './BarChart';
export { CostGrowth } from './CostGrowth';
export { LegendItem } from './LegendItem';
export * from './BarChart';
export * from './CostGrowth';
export * from './LegendItem';
export * from './Tooltip';