// @flow import * as React from 'react'; import EditForm from './editForm'; import ChannelList from './channelList'; import { SectionsContainer, Column } from 'src/components/settingsViews/style'; import RedirectSettings from './redirect'; import { ErrorBoundary, SettingsFallback } from 'src/components/error'; type Props = { communitySlug: string, community: Object, }; class Overview extends React.Component { render() { const { community, communitySlug } = this.props; return ( ); } } export default Overview;