How can I export a stateless pure dumb component?
If I use class this works:
import React, { Component } from 'react';
export default class Header extends Component {
render(){
return <pre>Header</pre>
}
}
However if I use a pure function I cannot get it to work.
import React, { Component } from 'react';
export default const Header = () => {
return <pre>Header</pre>
}
Am I missing something basic?
You can also use a function declaration instead of assignment:
In your example, you already use curly brackets and
return
so this is apparently matching with your needs with no compromise.Just as a side note. You could technically
export default
without declaring a variable first.ES6 doesn't allow
export default const
. You must declare the constant first then export it:This constraint exists to avoid writting
export default a, b, c;
that is forbidden: only one variable can be exported as defaultyou can do it in two ways
1)
2)
if we use
default
we import like thisif we don't use
default
we import like this