8 lines
175 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
import React from 'react';
export default function toArray(children) {
var ret = [];
React.Children.forEach(children, function (c) {
ret.push(c);
});
return ret;
}