import React from 'react'; import { CatalogTags } from '@redocly/theme/components/Catalog/CatalogTags'; export type CatalogOwnersCellProps = { owners: string[]; }; export function CatalogOwnersCell({ owners }: CatalogOwnersCellProps) { return (
); }