import * as React from 'react'; import { ComponentPage, ExampleCard, IComponentDemoPageProps, PropertiesTableSet, } from '@fluentui/react-docsite-components'; import { AreaChartBasicExample } from './AreaChart.Basic.Example'; import { AreaChartMultipleExample } from './AreaChart.Multiple.Example'; import { AreaChartStyledExample } from './AreaChart.Styled.Example'; const AreaChartBasicExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/AreaChart/AreaChart.Basic.Example.tsx') as string; const AreaChartMultipleExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/AreaChart/AreaChart.Multiple.Example.tsx') as string; const AreaChartStyledExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/AreaChart/AreaChart.Styled.Example.tsx') as string; export class AreaChart extends React.Component { public render(): JSX.Element { return ( } propertiesTables={ ('!raw-loader?esModule=false!@fluentui/react-charting/src/components/AreaChart/AreaChart.types.ts'), ]} /> } isHeaderVisible={this.props.isHeaderVisible} /> ); } }