lbry-desktop/ui/component/channelDiscussion/view.jsx
Sean Yesmunt 5beb219ff6 fix notification link to comment not working in some cases
the router scroll handling was interefering. I turned that off if  exists as a search param
2020-09-29 17:12:32 -04:00

19 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;