/* eslint-disable @typescript-eslint/ban-ts-comment */ import React from 'react'; import { Container } from 'components/layout'; import { RichTextContentSegmentTypeEnum } from 'expo-schema'; import { RichTextProps } from './Types'; import { Content } from './content'; import { BottomAction } from './bottom-action'; export const RichText: React.FC = ({ block }) => { return (
{block.richTextContent.map((content, index) => ( {}} placeholder="" key={index} richTextContent={{ id: String(''), order: 12, strings: [], type: RichTextContentSegmentTypeEnum.Paragraph, }} /> ))}
{/* @ts-ignore */}
); };