module_container.js 199 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
'use strict';

const create = () => {
  const $container = $('<section class="module_wrapper">');
  $('.module_container').append($container);
  return $container;
};

module.exports = {
  create
};