From 85c922786a650d824f47a64217a07d79ae55783e Mon Sep 17 00:00:00 2001 From: Garvit Khamesra Date: Fri, 20 May 2022 09:24:35 +0530 Subject: [PATCH] Update README.md If we use "react-comments" it will give an error not found. We need to give "react-comments-section". --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 09d230d..547f61a 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ npm i react-comments-section ```jsx import React, { PureComponent, useState } from 'react' import data from "./data.json" -import { CommentSection } from 'react-comments' -import 'react-comments/dist/index.css' +import { CommentSection } from 'react-comments-section' +import 'react-comments-section/dist/index.css' import "./App.css" @@ -57,8 +57,8 @@ import "./App.css" ```jsx import React, { PureComponent, useState } from 'react' import data from "./data.json" -import { CommentSection } from 'react-comments' -import 'react-comments/dist/index.css' +import { CommentSection } from 'react-comments-section' +import 'react-comments-section/dist/index.css' import "./App.css" class App extends PureComponent{