I want to create an object:
import React from "react";
import { Registration } from "../../";
const RouteObj = {
Registration: {
route: "/registration",
p: <Registration />
}
};
export default RouteObj;
And then, in a second file call:
import React from 'react';
import RouteObj from ...
class Thing extends React.Component{
render() {
<RouteObj.Registrationp />
}
}
When trying this, I get the error:
React.createElement: type is invalid -- expected a string (for built-in ponents) or a class/function (for posite ponents) but got: undefined. You likely forgot to export your ponent from the file it's defined in.
Is it possible to render React ponents in this way?
I want to create an object:
import React from "react";
import { Registration } from "../../";
const RouteObj = {
Registration: {
route: "/registration",
p: <Registration />
}
};
export default RouteObj;
And then, in a second file call:
import React from 'react';
import RouteObj from ...
class Thing extends React.Component{
render() {
<RouteObj.Registration.p />
}
}
When trying this, I get the error:
React.createElement: type is invalid -- expected a string (for built-in ponents) or a class/function (for posite ponents) but got: undefined. You likely forgot to export your ponent from the file it's defined in.
Is it possible to render React ponents in this way?
Share Improve this question edited Nov 7, 2017 at 14:31 Ben Irving asked Nov 7, 2017 at 13:24 Ben IrvingBen Irving 4931 gold badge6 silver badges21 bronze badges 02 Answers
Reset to default 6Registration
is already a tag (a ponent), that's why I guess you have to use curly brackets instead.
import React from 'react';
import RouteObj from ...
class Thing extends React.Component{
render() {
<div>
{RouteObj.Registration.p}
</div>
}
}
- You've got to export
RouteObj
correctly, as the default export.
Thus, add this after you declare RouteObj
:
export default RouteObj;
You were trying to use something you didn't export, as the error says. It was thus undefined.
- You can't create an element from an element, you need to create an element from a ponent class. So instead, you have to set
RouteObj.p
toRegistration
, the ponent class itself, not an instance ofRegistration
,<Registration />
.
So, instead, this is what p
should be:
p: Registration
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743694805a4491575.html
评论列表(0条)