import React from 'react'; import { Helmet } from 'react-helmet'; import brand from 'ba-api/brand'; import { SourceReader, PapperBlock } from 'ba-components'; import { BarSimple, BarStacked, BarMix, BarCustom, BarPositiveNegative, BarCustomLabel, BarResponsive } from './demos'; class BarCharts extends React.Component { render() { const title = brand.name + ' - Chart'; const description = brand.desc; const docSrc = 'containers/Charts/demos/'; return (
{title}
); } } export default BarCharts;