Closed
Description
If I do this, my docBlock component description works as expected:
/**
* Description here.
*/
function myComponent() { .. }
export default myComponent;
However, in this situation the description comes out blank:
/**
* Description here.
*/
export default function myComponent() { .. }
Am I misunderstanding something, or is this a bug?