commit 18182dc860b5ec3cce3aca5b14fc51b618354f4e parent 22e474fa22b5dba46f01d141d1da46a427469b72 Author: tanhengyeow <E0032242@u.nus.edu> Date: Thu, 18 Jun 2020 00:20:47 +0800 Update placeholder pages Diffstat:
| M | frontend/src/components/activity/Index.tsx | | | 7 | ++++++- |
| M | frontend/src/components/home/Index.tsx | | | 7 | ++++++- |
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git 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 @@ -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;