[in progress][WebsiteList] add table, fix ui

This commit is contained in:
Sergey Nikiforov 2020-11-20 23:04:30 +03:00
parent 32d2a5830e
commit 2d591a7906
7 changed files with 230 additions and 20 deletions

View file

@ -0,0 +1,12 @@
import React from 'react';
import Link from 'components/common/Link';
import Favicon from 'components/common/Favicon';
export default function DetailsLink({ website_id, name, domain }) {
return (
<Link href="/website/[...id]" as={`/website/${website_id}/${name}`}>
<Favicon domain={domain} />
{name}
</Link>
);
}