mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
29 lines
618 B
TypeScript
29 lines
618 B
TypeScript
|
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
||
|
import ManagedPublisher from './managed-publisher'
|
||
|
|
||
|
export type Publisher = {
|
||
|
slug: string
|
||
|
managerIds: string[]
|
||
|
name: string
|
||
|
partner: string
|
||
|
}
|
||
|
|
||
|
export default function ManagedPublishers() {
|
||
|
const { managedPublishers } = useSubscriptionDashboardContext()
|
||
|
|
||
|
if (!managedPublishers) {
|
||
|
return null
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
{managedPublishers.map(publisher => (
|
||
|
<ManagedPublisher
|
||
|
publisher={publisher}
|
||
|
key={`managed-publisher-${publisher.slug}`}
|
||
|
/>
|
||
|
))}
|
||
|
</>
|
||
|
)
|
||
|
}
|