Skip to content

Commit

Permalink
export all the elements
Browse files Browse the repository at this point in the history
  • Loading branch information
avigoldman committed Oct 25, 2017
1 parent 8995008 commit edf59af
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions packages/heml-elements/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/* Document */
import Heml from './Heml'
import Head from './Head'
import Body from './Body'

/* Meta */
import Meta from './Meta'
import Subject from './Subject'
import Preview from './Preview'
import Base from './Base'
import Font from './Font'
import Style from './Style'

/* Table */
import { Table, Tr, Td } from './Table'

/* Grid */
import Block from './Block'
import Container from './Container'
import Row from './Row'
import Column from './Column'

/* Content */
import { H1, H2, H3, H4, H5, H6, P, Ol, Ul, Li, A } from './Typography'
import Hr from './Hr'
import Button from './Button'
import Img from './Img'

export {
/* Document */
Heml,
Head,
Body,

/* Meta */
Meta,
Subject,
Preview,
Base,
Font,
Style,

/* Table */
Table,
Tr,
Td,

/* Grid */
Block,
Container,
Row,
Column,

/* Content */
H1,
H2,
H3,
H4,
H5,
H6,
P,
Ol,
Ul,
Li,
A,
Hr,
Button,
Img
}

0 comments on commit edf59af

Please sign in to comment.