How can I export a stateless pure dumb component?
If I use class this works:
import React, { Component } from \'react\';
export default class Header ext
You can also use a function declaration instead of assignment:
export default function Header() {
return <pre>Header</pre>
}
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.
export default () => (
<pre>Header</pre>
)
const ComponentA = props => {
return <div>{props.header}</div>;
};
export default ComponentA;
2)
export const ComponentA = props => {
return <div>{props.header}</div>;
};
if we use default
we import like this
import ComponentA from '../shared/componentA'
if we don't use default
we import like this
import { ComponentA } from '../shared/componentA'
ES6 doesn't allow export default const
. You must declare the constant first then export it:
const Header = () => {
return <pre>Header</pre>
};
export default Header;
This constraint exists to avoid writting export default a, b, c;
that is forbidden: only one variable can be exported as default