export default function AttachedBehaviors()

in src/AttachedBehaviors.tsx [8:16]


export default function AttachedBehaviors({ behaviors }: Props) {
  return (
    <CollapsingDetails header="Attached behaviors">
      {behaviors.map(b => (
        <CollapsingType key={b} header="Behavior" namespace="_spec_utils" name={b} />
      ))}
    </CollapsingDetails>
  );
}