https://github.com/ctrlaltdev/react-comments-void
💬 React component that add a comment section that is not linked to any backend or database. The user will be the only one to see their comments. As it should be.
https://github.com/ctrlaltdev/react-comments-void
comment comments component javascript offline react
Last synced: 9 months ago
JSON representation
💬 React component that add a comment section that is not linked to any backend or database. The user will be the only one to see their comments. As it should be.
- Host: GitHub
- URL: https://github.com/ctrlaltdev/react-comments-void
- Owner: ctrlaltdev
- License: mpl-2.0
- Created: 2018-07-13T00:54:52.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T02:39:29.000Z (almost 3 years ago)
- Last Synced: 2025-03-14T22:03:22.741Z (10 months ago)
- Topics: comment, comments, component, javascript, offline, react
- Language: JavaScript
- Homepage:
- Size: 238 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/react-comments-void)
[](https://github.com/ctrlaltdev/react-comments-void/releases)
[](https://github.com/ctrlaltdev/react-comments-void/blob/main/LICENSE)

This is a react component to add a comment section with a slight particularity: there is no back-end. no database. You can only see your own comments.
### "L'enfer, c'est les autres" - Sartre
("Hell is other people")
This react component is a statement and wasn't really created to solve an existing problem, though I'd love to it used on websites.
### Usage
First add the component to your dependencies:
`npm i -S react-comments-void` or `yarn add react-comments-void`
Then use the component in your code:
```
...
import HellIsOtherPeople from 'react-comments-void'
...
ReactDOM.render(
,
document.getElementById('root')
)
...
```