Community Feed
This section shows a list of posts from a community.
Last updated
Was this helpful?
Was this helpful?
import { FeedType, PostTargetType } from '@amityco/js-sdk'
const CommunityFeed = ({ communityId, currentUserId, isNewCommunity }) => {
return (
<AmityUiKitFeed
targetType={PostTargetType.CommunityFeed}
targetId={communityId}
feedType={FeedType.Published}
/>
)
}