2019-10-15 00:21:40 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import CommentsList from 'component/commentsList';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
};
|
|
|
|
|
|
|
|
function ChannelDiscussion(props: Props) {
|
|
|
|
const uri = props.uri;
|
|
|
|
return (
|
2020-08-25 21:25:33 +02:00
|
|
|
<section className="section">
|
|
|
|
<CommentsList uri={uri} />
|
|
|
|
</section>
|
2019-10-15 00:21:40 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ChannelDiscussion;
|