-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.mjs
More file actions
45 lines (42 loc) · 1.06 KB
/
index.mjs
File metadata and controls
45 lines (42 loc) · 1.06 KB
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
35
36
37
38
39
40
41
42
43
44
45
import * as C from './columns/index.mjs';
import * as Cp from './components/index.mjs';
import * as E from './elements/index.mjs';
import * as F from './form/index.mjs';
import * as G from './grid/index.mjs';
import * as L from './layout/index.mjs';
/**
* The power of Flexbox in a simple interface
*
* https://bulma.io/documentation/columns/
*/
const Column = C;
/**
* Advanced multi-part components with lots of possibilities
*
* https://bulma.io/documentation/components/
**/
const Component = Cp;
/**
* Essential interface elements that only require a single CSS class
*
* https://bulma.io/documentation/elements/ */
const Element = E;
/**
* The indispensable form controls, designed for maximum clarity
*
* https://bulma.io/documentation/form/
*/
const Form = F;
/**
* A 2 dimensional layout component
*
* https://bulma.io/documentation/grid/
*/
const Grid = G;
/**
* Design the structure of your webpage with these CSS classes
*
* https://bulma.io/documentation/layout/
*/
const Layout = L;
export default { Column, Component, Element, Form, Grid, Layout };