5beb219ff6
the router scroll handling was interefering. I turned that off if exists as a search param
18 lines
325 B
JavaScript
18 lines
325 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import CommentsList from 'component/commentsList';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
};
|
|
|
|
function ChannelDiscussion(props: Props) {
|
|
const uri = props.uri;
|
|
return (
|
|
<section className="section">
|
|
<CommentsList uri={uri} />
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default ChannelDiscussion;
|