Hi,
Just a quick note - if your component generates chunks (code splitting) then importing it in other project imports undefined.
Disabling code splitting in the component helps - in config/webpack-config.js:
plugins: [
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1,
}),
...