summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortanhengyeow <E0032242@u.nus.edu>2020-06-18 00:20:47 +0800
committertanhengyeow <E0032242@u.nus.edu>2020-06-18 00:20:47 +0800
commit18182dc860b5ec3cce3aca5b14fc51b618354f4e (patch)
treef654dbe38276a761c45be836b72c89a8f4dc1f88
parent22e474fa22b5dba46f01d141d1da46a427469b72 (diff)
downloadlibeufin-18182dc860b5ec3cce3aca5b14fc51b618354f4e.tar.gz
libeufin-18182dc860b5ec3cce3aca5b14fc51b618354f4e.tar.bz2
libeufin-18182dc860b5ec3cce3aca5b14fc51b618354f4e.zip
Update placeholder pages
-rw-r--r--frontend/src/components/activity/Index.tsx7
-rw-r--r--frontend/src/components/home/Index.tsx7
2 files changed, 12 insertions, 2 deletions
diff --git a/frontend/src/components/activity/Index.tsx b/frontend/src/components/activity/Index.tsx
index 9f6590c3..d7326049 100644
--- a/frontend/src/components/activity/Index.tsx
+++ b/frontend/src/components/activity/Index.tsx
@@ -1,5 +1,10 @@
import * as React from 'react';
-const Activity = () => <h1>Activity</h1>;
+const Activity = () => (
+ <>
+ <h1>Activity</h1>
+ <p style={{ height: '100vh' }}>text</p>
+ </>
+);
export default Activity;
diff --git a/frontend/src/components/home/Index.tsx b/frontend/src/components/home/Index.tsx
index 27fa3b03..442344e5 100644
--- a/frontend/src/components/home/Index.tsx
+++ b/frontend/src/components/home/Index.tsx
@@ -1,5 +1,10 @@
import * as React from 'react';
-const Home = () => <h1>Home</h1>;
+const Home = () => (
+ <>
+ <h1>Home</h1>
+ <p style={{ height: '100vh' }}>text</p>
+ </>
+);
export default Home;