import PhotoTag from '@/tag/PhotoTag';
import PhotoFavs from '@/tag/PhotoFavs';
import { isTagFavs } from '@/tag';
import AdminBadge from './AdminBadge';
export default async function AdminTagBadge({
tag,
count,
hideBadge,
}: {
tag: string,
count: number,
hideBadge?: boolean,
}) {
return (
: }
count={count}
hideBadge={hideBadge}
/>
);
}