import * as TID from "@atcute/tid";
import { createResource, createSignal, For, onMount, Show } from "solid-js";
import { getAllBacklinks, getRecordBacklinks, LinksWithRecords } from "../utils/api.js";
import { localDateFromTimestamp } from "../utils/date.js";
import { Button } from "./button.jsx";
type BacklinksProps = {
target: string;
collection: string;
path: string;
};
type BacklinkEntry = {
collection: string;
path: string;
counts: { distinct_dids: number; records: number };
};
const flattenLinks = (links: Record
No backlinks found.