tinper-bee-core/js/toArray.js

9 lines
172 B
JavaScript
Raw Normal View History

2016-12-15 16:43:55 +08:00
import React from 'react';
export default function toArray(children) {
const ret = [];
React.Children.forEach(children, (c) => {
ret.push(c);
});
return ret;
}