import ContainerLink from "./container_link"; import Resource from "./resource"; import Raw from "./raw"; import WidgetLabel from "./widget_label"; export default function Resources({ options, children, target }) { return
{ children.filter(child => child && child.type === Resource) }
{ children.filter(child => child && child.type === WidgetLabel) }
; }