import { memo } from 'react' import type { IssueData } from '@app/types' import type { Feed } from 'a11ywatch-web-wasm' import { FeedItem } from './feed-item' // domain list interface interface DomainListProps { websites?: string[] feed: Feed data?: Map> onScanEvent?(x: any): any } // domain list const DomainListWrapper = ({ websites, feed, data, onScanEvent, }: DomainListProps) => ( ) export const DomainList = memo(DomainListWrapper)