35 lines
906 B
JavaScript
35 lines
906 B
JavaScript
/**
|
|
* --------------------------------------------------------------------------
|
|
* Bootstrap (v4.6.0): index.js
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
|
|
import Alert from './bootstrap/alert';
|
|
import Button from './bootstrap/button';
|
|
import Carousel from './bootstrap/carousel';
|
|
import Collapse from './bootstrap/collapse';
|
|
import Dropdown from './bootstrap/dropdown';
|
|
import Modal from './bootstrap/modal';
|
|
import Popover from './bootstrap/popover';
|
|
import Scrollspy from './bootstrap/scrollspy';
|
|
import Tab from './bootstrap/tab';
|
|
import Toast from './bootstrap/toast';
|
|
import Tooltip from './bootstrap/tooltip';
|
|
import Util from './bootstrap/util';
|
|
|
|
export {
|
|
Util,
|
|
Alert,
|
|
Button,
|
|
Carousel,
|
|
Collapse,
|
|
Dropdown,
|
|
Modal,
|
|
Popover,
|
|
Scrollspy,
|
|
Tab,
|
|
Toast,
|
|
Tooltip
|
|
};
|