import React from 'react' import { View } from 'react-native' import ParseContent from '@components/ParseContent' import { StyleConstants } from '@utils/styles/constants' export interface Props { status: Mastodon.Status numberOfLines?: number highlighted?: boolean } const TimelineContent: React.FC = ({ status, numberOfLines, highlighted = false }) => { return ( <> {status.spoiler_text ? ( <> ) : ( )} ) } export default React.memo(TimelineContent, () => true)