Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 418 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 418 Bytes

idyll-component-children

Utilities for manipulating children components

Usage

const { filterChildren, mapChildren } = require('idyll-component-children');

filterChildren(children, (c) => {
  // Filter for components named 'mycomponent'
  return c.type.name && c.type.name.toLowerCase() === 'mycomponent';
})


mapChildren(children, (c) => {
  // .. do some modification to the child
  return c;
})