@bigfishtv/cockpit
Version:
19 lines (15 loc) • 319 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import { getComponents } from '../../pluginRegistry'
export function PluginContainer({ id }) {
return (
<div>
{getComponents(id).map(c => (
<c.component key={c.name} />
))}
</div>
)
}
PluginContainer.propTypes = {
id: PropTypes.string,
}