import React, {Children} from 'react'; import TileFooterCell from './TileFooterCell.js'; const TileFooter = ({children, align}) => (
{Children.toArray(children).filter(e => e.type === TileFooterCell)}
); export default TileFooter;