import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Markdown from 'react-markdown'; import { Helmet } from 'react-helmet'; import brand from 'ba-api/brand'; import { withStyles } from '@material-ui/core/styles'; import codeStyle from 'ba-styles/Code.scss'; import { SourceReader, PapperBlock } from 'ba-components'; import { Paper } from '@material-ui/core'; import { TreeTableDemo, TreeTableDemoIcon } from './demos'; const styles = ({ root: { flexGrow: 1, } }); class TreeTablePage extends Component { render() { const title = brand.name + ' - Table'; const description = brand.desc; const docSrc = 'containers/Tables/demos/'; const { classes } = this.props; return (
{title}
); } } TreeTablePage.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(TreeTablePage);