Skip to content

Instantly share code, notes, and snippets.

@vfedorenk0
vfedorenk0 / Comments.js
Last active November 12, 2022 19:46
Redux News Reader
import React, { useEffect } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import {
loadCommentsForArticleId,
selectComments,
isLoadingComments,
} from '../comments/commentsSlice';
import { selectCurrentArticle } from '../currentArticle/currentArticleSlice';
import CommentList from '../../components/CommentList';
import CommentForm from '../../components/CommentForm';