const React = require("react"); class NativeLayer extends React.Component { render () { const { width, height, children, ...rest } = this.props; return
{React.Children.map(children, child =>
{child}
)}
; } } module.exports = NativeLayer;