Added external links for pages.

This commit is contained in:
Mike Cao 2023-12-13 00:02:54 -08:00
parent 442ad61779
commit 9f73aba900
5 changed files with 25 additions and 9 deletions

View file

@ -10,10 +10,17 @@ import CountriesTable from 'components/metrics/CountriesTable';
import EventsTable from 'components/metrics/EventsTable';
import EventsChart from 'components/metrics/EventsChart';
export default function WebsiteTableView({ websiteId }: { websiteId: string }) {
export default function WebsiteTableView({
websiteId,
domainName,
}: {
websiteId: string;
domainName: string;
}) {
const [countryData, setCountryData] = useState();
const tableProps = {
websiteId,
domainName,
limit: 10,
};