Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a cl

Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a cl_第1张图片

原因就是在父组件引用子组件时多加了一个大括号

import { Content } from './content'

改成

import Content from './content'

你可能感兴趣的:(react)