import type { FC } from 'react';
import type { RichTextProps } from '../RichText';

import Box from '../Box';
import RichText from '../RichText';

export interface ArticleContentProps extends RichTextProps {}

const ArticleContent: FC<ArticleContentProps> = (richTextProps) => {
  return (
    <Box maxWidth={660} padding="0 2rem 13rem" isCentered>
      <RichText {...richTextProps} />
    </Box>
  );
};

export default ArticleContent;
