File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ import {
1414 Text ,
1515} from '@ui5/webcomponents-react' ;
1616import type { CommonProps } from '@ui5/webcomponents-react-base' ;
17+ import { BarChart } from '@ui5/webcomponents-react-charts' ;
18+ import type { BarChartProps } from '@ui5/webcomponents-react-charts' ;
1719import { clsx } from 'clsx' ;
1820import { useRef , useState } from 'react' ;
1921import { 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 }
You can’t perform that action at this time.
0 commit comments