-
Notifications
You must be signed in to change notification settings - Fork 30
Changelog
Akshay Ram Vignesh edited this page Apr 26, 2020
·
3 revisions
We introduced component separation in this version to segregate among Report, Dashboard and Tile. This is a major change from < 2.0.0 releases.
Below is how the import statement should look like.
<2.0.0
import Report from 'powerbi-report-component';
>=2.0.0
import { Report, Dashboard, Tile } from 'powerbi-report-component';
version >=2.0.0 doesn't have a default export instead to have better API design and separation of concerns we have refactored it to named exports i.e, Report, Dashboard, Tile.
Refer to updated README to make required changes.