import * as React from 'react'; import { ComponentPage, ExampleCard, IComponentDemoPageProps, PropertiesTableSet, } from '@fluentui/react-docsite-components'; import { LineChartBasicExample } from './LineChart.Basic.Example'; import { LineChartStyledExample } from './LineChart.Styled.Example'; import { LineChartMultipleExample } from './LineChart.Multiple.Example'; import { LineChartEventsExample } from './LineChart.Events.Example'; const LineChartBasicExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/LineChart/LineChart.Basic.Example.tsx') as string; const LineChartStyledExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/LineChart/LineChart.Styled.Example.tsx') as string; const MultipleLineChartExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/LineChart/LineChart.Multiple.Example.tsx') as string; const LineChartEventsExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react-charting/LineChart/LineChart.Events.Example.tsx') as string; export class LineChartPage extends React.Component { public render(): JSX.Element { return ( } propertiesTables={ ('!raw-loader?esModule=false!@fluentui/react-charting/src/components/LineChart/LineChart.types.ts'), ]} /> } isHeaderVisible={this.props.isHeaderVisible} /> ); } }