-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathindex.js
40 lines (36 loc) · 902 Bytes
/
index.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
35
36
37
38
39
40
import PropTypes, { configStyleValidator, __styleValidator } from './PropTypes'
import Box from './components/Box'
import Email from './components/Email'
import Image from './components/Image'
import Item from './components/Item'
import Row from './components/Row'
import Col from './components/Col'
import Span from './components/Span'
import A from './components/A'
import injectReactEmailAttributes from './injectReactEmailAttributes'
import renderEmail from './renderEmail'
const __DEV__ = typeof process !== 'undefined' && process.env && process.env.NODE_ENV !== 'production'
configStyleValidator({
warn: __DEV__,
})
export {
PropTypes,
Box,
Email,
Image,
Item,
Row,
Col,
Span,
A,
injectReactEmailAttributes,
configStyleValidator,
renderEmail,
}
export default {
PropTypes,
injectReactEmailAttributes,
configStyleValidator,
renderEmail,
__styleValidator,
}