Skip to content

Commit 2a2e22f

Browse files
committed
revert this commit!
1 parent aac10df commit 2a2e22f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.storybook/components/Footer.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import {
1414
Text,
1515
} from '@ui5/webcomponents-react';
1616
import type { CommonProps } from '@ui5/webcomponents-react-base';
17+
import { BarChart } from '@ui5/webcomponents-react-charts';
18+
import type { BarChartProps } from '@ui5/webcomponents-react-charts';
1719
import { clsx } from 'clsx';
1820
import { useRef, useState } from 'react';
1921
import { createPortal } from 'react-dom';
@@ -30,9 +32,13 @@ export const Footer = (props: CommonProps) => {
3032
setPPOpen((prev) => !prev);
3133
};
3234

35+
const barChartProps: BarChartProps = { dimensions: [], measures: [], dataset: [] };
36+
3337
return createPortal(
3438
<footer {...props} className={clsx(classes.footer, className)}>
3539
<div ref={footerRef} className={classes.content}>
40+
{/*todo: remove test component again*/}
41+
<BarChart {...barChartProps} />
3642
<FlexBox
3743
justifyContent={FlexBoxJustifyContent.SpaceBetween}
3844
alignItems={FlexBoxAlignItems.Center}

0 commit comments

Comments
 (0)