UNPKG
@busy-web/components
Version:
latest (2.19.2)
2.19.2
2.19.0
2.18.3
2.18.2
2.18.1
2.18.0
2.17.10
2.17.9
2.17.8
2.17.7
2.17.6
2.17.5
2.17.4
2.17.3
2.17.2
2.17.1
2.17.0
Ember addon library for usefull components.
github.com/busy-web/components
busy-web/components
@busy-web/components
/
addon
/
components
/
bc-section-half.js
14 lines
(12 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** *
@module
Components * */
import Component
from
'@ember/component'
; import layout
from
'../templates/components/bc-section-half'
; export
default
Component.
extend
({
layout
: layout,
tagName
:
'section'
,
classNames
: [
'bc-section-half'
],
classNameBindings
: [
'active'
], });