import React from 'react'; import { Skeleton } from './Skeleton'; import styles from './PageComment.module.scss'; import CommentStyles from './PageComment/Comment.module.scss'; import CommentEditorStyles from './PageComment/CommentEditor.module.scss'; type PageCommentSkeletonProps = { commentTitleClasses?: string, roundedPill?: boolean, } export const PageCommentSkeleton = (props: PageCommentSkeletonProps): JSX.Element => { const { commentTitleClasses, } = props; return ( <> {/* TODO: Check the comment.html CSS */}