总览
当我们把多个子元素传递给一个只期望有一个React子元素的组件时,会产生"React.Children.only expected to receive single React element child"错误。为了解决该错误,将所有元素包装在一个React片段或一个封闭div
中。
这里有个示例来展示错误是如何发生的。
// App.js
import React from 'react';
function Button(props) {
//
标签:console,receive,Button,React,only,报错,return,Children
From: https://www.cnblogs.com/chuckQu/p/16997381.html