mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 12:44:57 +03:00
a9608d77ae
Previously, the exports were somewhat random with some files declaring local variables then immediately exporting them, and others simply doing the work needed in the export itself.
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
var ActivatingListItem = Ember.Component.extend({
|
|
tagName: 'li',
|
|
classNameBindings: ['active'],
|
|
active: false
|
|
});
|
|
|
|
export default ActivatingListItem;
|