UNPKG

@arc-fusion/cli

Version:

CLI for running Arc Fusion on your local machine

12 lines (10 loc) 248 B
import React from 'react' export default (ListType, ItemType = 'li') => ({ children }) => <ListType> { children.map( (child, index) => <ItemType key={child.key || index}>{child}</ItemType> ) } </ListType>