-
Notifications
You must be signed in to change notification settings - Fork 4
/
Bio.bs.js
71 lines (61 loc) · 1.68 KB
/
Bio.bs.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Generated by BUCKLESCRIPT VERSION 5.0.2, PLEASE EDIT WITH CARE
'use strict';
var Css = require("bs-css/src/Css.js");
var React = require("react");
function str(prim) {
return prim;
}
var wrapper = Css.style(/* :: */[
Css.display(/* flex */-1010954439),
/* :: */[
Css.marginBottom(Css.px(16)),
/* [] */0
]
]);
var img = Css.style(/* :: */[
Css.width(Css.px(64)),
/* :: */[
Css.height(Css.px(64)),
/* :: */[
Css.borderRadius(Css.px(32)),
/* :: */[
Css.marginRight(Css.px(12)),
/* [] */0
]
]
]
]);
var bioText = Css.style(/* :: */[
Css.display(/* flex */-1010954439),
/* :: */[
Css.alignItems(/* center */98248149),
/* [] */0
]
]);
var Styles = /* module */[
/* wrapper */wrapper,
/* img */img,
/* bioText */bioText
];
function Bio(Props) {
return React.createElement("div", {
className: wrapper
}, React.createElement("img", {
className: img,
alt: "Ian Wilson",
src: "/images/iwilsonq.jpg"
}), React.createElement("p", {
className: bioText
}, "Written by Ian Wilson who lives and works in Cupertino building useful things.", React.createElement("a", {
href: "https://twitter.com/iwilsonq"
}, "You should follow him on Twitter")));
}
var make = Bio;
var $$default = Bio;
exports.str = str;
exports.Styles = Styles;
exports.make = make;
exports.$$default = $$default;
exports.default = $$default;
exports.__esModule = true;
/* wrapper Not a pure module */