import { memo, FC, PropsWithChildren } from 'react' import { listStyle } from '@app/styles/lists/tw' import { ListCell } from './render/issues/cell' // Issues Lists export const ListComponent: FC> = ({ data, error, loading, emptyHeaderTitle = 'Empty', emptyHeaderSubTitle = 'Add your website below', children, }) => { return ( ) } export const List = memo(ListComponent)