let component = ReasonReact.statelessComponent("Arrow");
let make = (~post: post, _children) => {
...component,
render: _self =>
switch (post) {
| Draft(content) =>
content->s
| Published(content, timestamp) =>
content->s timestamp->string_of_int->s
},
};