mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 02:05:11 +00:00
add .section class on channel comments
This commit is contained in:
parent
e02f021b73
commit
46a85bec6b
2 changed files with 9 additions and 5 deletions
|
@ -10,10 +10,14 @@ type Props = {
|
||||||
function ChannelDiscussion(props: Props) {
|
function ChannelDiscussion(props: Props) {
|
||||||
const uri = props.uri;
|
const uri = props.uri;
|
||||||
return (
|
return (
|
||||||
<section className="card--section">
|
<div className="card--section">
|
||||||
<CommentCreate uri={uri} />
|
<section className="section">
|
||||||
<CommentsList uri={uri} />
|
<CommentCreate uri={uri} />
|
||||||
</section>
|
</section>
|
||||||
|
<section className="section">
|
||||||
|
<CommentsList uri={uri} />
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue