mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 11:35:37 +01:00
[in progress][WebsiteList] add table, fix ui
This commit is contained in:
parent
32d2a5830e
commit
2d591a7906
7 changed files with 230 additions and 20 deletions
12
components/common/DetailsLink.js
Normal file
12
components/common/DetailsLink.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue