import { memo } from 'react' import { LazyMount } from '@app/components/lazy/lazymount' import { RenderInnerPagesPaging } from '../../lists/render/issues/pages-paging' import { Analytic } from '@app/types' const PageBar = () => { return (
Pages
Lighthouse
Online
TTL
) } // issue card paging const PageCardCommponent = ({ pageUrl, liveData, handleMainClick, }: { pageUrl: string liveData?: Analytic[] handleMainClick?: any // modal }) => { return (
) } export const PageCard = memo(PageCardCommponent)