import Vue from 'vue';
import UiFooter from './Footer.vue';

const appFactory = (el, attrs) => {
  // Bootstrap Vue.js.
  new Vue({el, components: { UiFooter }});
};

export default appFactory;