forked from ShahanurSharif/shapecss-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshape.js
34 lines (27 loc) · 818 Bytes
/
shape.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*!
* Shapecss v3.0.0
* Copyright 2016-2017 Shahanur Sharif.
* http://microdreamit.com
* Licensed under MIT (https://github.com/MicroDreamIT/Shapecss/blob/master/LICENSE)
*/
'use strict';
import {Accordion} from "./component/Accordion";
import {Modal} from "./component/Modal";
import {getTab} from "./component/Tab";
import {Nav} from "./component/Nav";
import {Circle} from "./component/shapes/Circle";
import {Parallelogram} from "./component/shapes/Parallelogram";
import {Rectangle} from "./component/shapes/Rectangle";
import {Square} from "./component/shapes/Square";
const css = require('../sass/main.scss')
// import '../test.scss'
window.onload = function () {
new Accordion();
new Modal();
getTab();
new Nav();
new Circle();
new Parallelogram();
new Rectangle();
new Square();
}