import React from 'react'; import { Container } from 'components/layout'; import { RichTextContentSegmentTypeEnum } from 'expo-schema'; import { RichTextProps } from './Types'; import { Content } from './content'; export const RichText: React.FC = ({ block }) => { return ( {block.richTextContent.map((content, index) => ( {}} richTextContent={{ id: String(''), order: 12, strings: [], type: RichTextContentSegmentTypeEnum.Paragraph, }} /> ))} ); };