Skip to content

Commit

Permalink
example file
Browse files Browse the repository at this point in the history
swjtuer0762 committed Nov 11, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4242aea commit 57e17a0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CommentReply.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React, { useState } from 'react'

const CommentReply = (props) => {
const [isliked, setIsliked] = useState(false)

return (
<div className="comment-text">
<h5>{props.name}</h5>
<p>{props.content}</p>
</div>
);
}

export default CommentReply;

0 comments on commit 57e17a0

Please sign in to comment.