phpvms/resources/js/frontend/app.js

20 lines
464 B
JavaScript

/**
* Before you edit these, read the documentation on how these files are compiled:
* https://docs.phpvms.net/customize/building-assets
*
* Edits here don't take place until you compile these assets and then upload them.
*/
// Import the bids functionality
import { addBid, removeBid } from './bids';
require('./../bootstrap');
window.phpvms.bids = {
addBid,
removeBid,
};
// Import the mapping function
window.phpvms.map = require('../maps/index');