From 0ba0dc6cd8090d92ed937b0d17c6e9cb0b2e9f8c Mon Sep 17 00:00:00 2001 From: Christopher Chaison Date: Tue, 27 Oct 2020 17:16:00 -0400 Subject: [PATCH] Done. --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index b0ec39e3..d46a80f1 100644 --- a/src/App.js +++ b/src/App.js @@ -11,7 +11,7 @@ class App extends Component { return (
- {moment().format('MMMM Do YYYY, hh:mm:ss a')} + Now

In React apps, we write JSX - it looks like HTML, and uses a lot of HTML syntax. @@ -19,7 +19,7 @@ class App extends Component { allows us to add in components, which are separate, self-contained chunks of JSX.

- +
); }