import React from 'react' import {FeedSliceModel} from 'state/models/feed-view' import {FeedItem} from './FeedItem' export function FeedSlice({ slice, showFollowBtn, ignoreMuteFor, }: { slice: FeedSliceModel showFollowBtn?: boolean ignoreMuteFor?: string }) { return ( <> {slice.items.map((item, i) => ( ))} ) }