import type { InstanceTab } from "../../generated/types"; interface Props { tab: InstanceTab; } export default function TabItem({ tab }: Props) { return (
{tab.title || "Untitled"}
{tab.url}
); }