mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at localize-dates 22 lines 559 B view raw
1import React from 'react' 2import {View} from 'react-native' 3import {AppBskyEmbedRecord} from '@atproto/api' 4 5import {PostEmbeds} from '#/view/com/util/post-embeds' 6import {atoms as a, native, useTheme} from '#/alf' 7 8let MessageItemEmbed = ({ 9 embed, 10}: { 11 embed: AppBskyEmbedRecord.View 12}): React.ReactNode => { 13 const t = useTheme() 14 15 return ( 16 <View style={[a.my_xs, t.atoms.bg, native({flexBasis: 0})]}> 17 <PostEmbeds embed={embed} allowNestedQuotes /> 18 </View> 19 ) 20} 21MessageItemEmbed = React.memo(MessageItemEmbed) 22export {MessageItemEmbed}