9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
export default function toArray(children) {
|
||
|
const ret = [];
|
||
|
React.Children.forEach(children, (c) => {
|
||
|
ret.push(c);
|
||
|
});
|
||
|
return ret;
|
||
|
}
|