@cheatsheetSection
Bootstrapping
@cheatsheetIndex 0
@description
`import {bootstrap} from 'angular2/angular2';`
@cheatsheetItem
``|`[value]`
Binds property `value` to the result of expression `firstName`.
@cheatsheetItem
`
`|`[attr.role]`
Binds attribute `role` to the result of expression `myAriaRole`.
@cheatsheetItem
`
`|`[class.extra-sparkle]`
Binds the presence of the css class `extra-sparkle` on the element to the truthiness of the expression `isDelightful`.
@cheatsheetItem
`
`|`[style.width.px]`
Binds style property `width` to the result of expression `mySize` in pixels. Units are optional.
@cheatsheetItem
`