import React from 'react'; import {InstagramPostType, UserType} from '../../types'; import {TaggPost} from './'; interface TaggsFeedProps { user: UserType; socialHandle: string; posts: Array; } const TaggsFeed: React.FC = ({user, socialHandle, posts}) => { return ( <> {posts?.map((post, index) => ( ))} ); }; export default TaggsFeed;