From 4e59bae866504fa3fa2237a34c6cfbfeac25ef58 Mon Sep 17 00:00:00 2001 From: jac Date: Sun, 30 May 2021 01:22:09 -0400 Subject: [PATCH 1/2] Add About blank pages for test --- src/Components/About.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Components/About.js diff --git a/src/Components/About.js b/src/Components/About.js new file mode 100644 index 0000000..f34a87f --- /dev/null +++ b/src/Components/About.js @@ -0,0 +1,11 @@ +import * as React from 'react'; + +export const About = (props) => { + return ( +
+

This is about

+
+ ); +}; + +export default About; \ No newline at end of file From b3a6b64a6e249e1973e157cd6a95f878689b185c Mon Sep 17 00:00:00 2001 From: jac Date: Sun, 30 May 2021 01:28:00 -0400 Subject: [PATCH 2/2] Add About222 blank pages for test --- src/Components/About.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/About.js b/src/Components/About.js index f34a87f..f2654a4 100644 --- a/src/Components/About.js +++ b/src/Components/About.js @@ -3,7 +3,7 @@ import * as React from 'react'; export const About = (props) => { return (
-

This is about

+

This is about 222

); };