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