我试图像这样动态地调用一个组件
var Tagname = 'Species';
options.push(<Tagname {...attrs}/>);
我在控制台中收到警告
Warning: <Species /> is using uppercase HTML. Always use lowercase HTML tags in React.
Warning: The tag <Species> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.
所有其他代码工作正常。但是这个组件不起作用。我怎样才能解决这个问题?