diff --git a/src/EmailContent.tsx b/src/EmailContent.tsx index 445f552..953d043 100644 --- a/src/EmailContent.tsx +++ b/src/EmailContent.tsx @@ -1,5 +1,7 @@ import Button from "react-bootstrap/Button"; +import Col from "react-bootstrap/Col"; import Container from "react-bootstrap/Container"; +import Form from "react-bootstrap/Form"; import Placeholder from "react-bootstrap/Placeholder"; import React from "react"; import Row from "react-bootstrap/Row"; @@ -65,6 +67,30 @@ class EmailContent extends React.Component< } return ( + +
+ + + From + + +

+ {email.from == null + ? "unknown" + : email.from.map((f) => f.name)} +

+ + + Received + + {email.receivedAt} +
+
+