From 62409e601c4cb340cb0ee9100c14effcfa2f18bd Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 12 Oct 2020 22:59:06 -0400 Subject: [PATCH] Add period to the end of an assignment --- src/components/Assignment/Assignment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Assignment/Assignment.js b/src/components/Assignment/Assignment.js index 492861f..d17385f 100644 --- a/src/components/Assignment/Assignment.js +++ b/src/components/Assignment/Assignment.js @@ -6,7 +6,7 @@ import RelativeTime from "react-relative-time"; export default function Assignment({ by, to, datetime }){ return ( - {by} assigned this to {to} + {by} assigned this to {to} . ); }