import React from "react";
import styled from "styled-components";

const CommentComponentStyled = styled.div``;

const CommentComponent = () => {
  return <CommentComponentStyled />;
};

export default CommentComponent;