export const x = true; // import { createSelector } from 'reselect'; // import { initialState } from 'CommentSection/reducer'; // import { IApplicationRootState } from 'types'; // import { ICommentState } from 'CommentSection/types'; // const selectComments = (state: IApplicationRootState) => { // return state.comments || initialState; // }; // const makeSelectComments = () => // createSelector(selectComments, (commentState: ICommentState) => { // return commentState.comments; // }); // const makeSelectUsers = () => // createSelector(selectComments, (commentState: ICommentState) => { // return commentState.users; // }); // const makeSelectThreadId = () => // createSelector(selectComments, (commentState: ICommentState) => { // return commentState.threadId; // }); // const makeSelectReplyUser = () => // createSelector(selectComments, (commentState: ICommentState) => { // return commentState.replyUser; // }); // export { // selectComments, // makeSelectComments, // makeSelectUsers, // makeSelectThreadId, // makeSelectReplyUser, // };