An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![npm](https://img.shields.io/npm/v/react-comments-void.svg?style=for-the-badge)](https://www.npmjs.com/package/react-comments-void)
[![GitHub release](https://img.shields.io/github/release/ctrlaltdev/react-comments-void.svg?style=for-the-badge)](https://github.com/ctrlaltdev/react-comments-void/releases)
[![licence](https://img.shields.io/npm/l/react-comments-void.svg?style=for-the-badge)](https://github.com/ctrlaltdev/react-comments-void/blob/main/LICENSE)
![JavaScript](https://img.shields.io/badge/_-JS-F0DB4F.svg?style=for-the-badge)

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')
)

...
```