RC0 How to export Components and other features properly

Ok, here what i’ve done with ng2-charts.

1.- npm install ng2-charts --save
2.- npm install chart.js --save
3.- in your app.module:
import ‘…/…/node_modules/chart.js/dist/Chart.min.js’; <== (https://github.com/valor-software/ng2-charts/issues/503)
import { ChartsModule } from ‘ng2-charts/ng2-charts’;
4.- Set your .ts and .html following this: http://valor-software.com/ng2-charts/ (line chart for example)

I don’t know if this is the best way. But, it just works fine with RC3.

Improves are always welcome :wink: