https://github.com/alejandrorm-dev/codewell-comment-module
A comment box with nested replies. Perfect for practicing positioning. Intermediate level.
https://github.com/alejandrorm-dev/codewell-comment-module
Last synced: 9 days ago
JSON representation
A comment box with nested replies. Perfect for practicing positioning. Intermediate level.
- Host: GitHub
- URL: https://github.com/alejandrorm-dev/codewell-comment-module
- Owner: AlejandroRM-DEV
- License: mit
- Created: 2022-11-14T00:17:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-14T03:50:17.000Z (over 3 years ago)
- Last Synced: 2025-02-23T14:28:15.422Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 607 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codewell-Comment-Module
A comment box with nested replies. Perfect for practicing positioning. Intermediate level.
## Stack
- NextJS 13 Experimental
- Tailwind
## Data
```
[
{
id: 1,
user: "adamsdavid",
comment:
"I genuinely think that Codewell's community is AMAZING. It's just starting out but the templates on there are amazing.",
votes: 2,
time: "20 hours ago",
replies: [
{
id: 3,
user: "saramay",
comment:
"I agree. I've been coding really well (pun intended) ever since I started practicing on their templates hehe.",
votes: 5,
time: "16 hours ago",
replies: [
{
id: 4,
user: "jessica21",
comment: "Okay, this comment wins.",
votes: 5,
time: "14 hours ago",
replies: [],
},
],
},
],
},
{
id: 2,
user: "andrew231",
comment: "Thanks for making this, super helpful",
votes: 2,
time: "20 hours ago",
replies: [],
},
]
```
## Demo
