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