src/components/stacks/main.js
import Stack from "./stack_component";
require("./stacks.scss");
export default (function() {
return $(".articles").each(function() {
let stack = new Stack({
el: this
});
$(this).data("lpStack", stack);
});
}());