mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 16:41:31 +03:00
14 lines
481 B
JavaScript
14 lines
481 B
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom'
|
|
|
|
export default function MoreLink({site, endpoint}) {
|
|
return (
|
|
<div className="text-center w-full absolute pin-b pin-l p-4">
|
|
<Link to={`/${site.domain}/${endpoint}${window.location.search}`}className="font-bold text-sm text-grey-dark hover:text-red transition tracking-wide">
|
|
<svg className="feather mr-1"><use xlinkHref="#feather-maximize" /></svg>
|
|
MORE
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|