Skip to content

Commit

Permalink
feat(project): add placeholder home screen
Browse files Browse the repository at this point in the history
  • Loading branch information
RCVZ committed Apr 29, 2021
1 parent ba33fb6 commit 06df909
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/screens/Home/Home.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from 'react';

import Header from '../../components/Header/Header';

import styles from './Home.module.scss';

type HomeProps = {
dummy?: string;
};

const Home: React.FC<HomeProps> = ({ dummy = 'defaultValue' }: HomeProps) => {
return (
<div className={styles.Home}>
<Header></Header>
<p style={{ color: 'white' }}>{dummy}</p>
</div>
);
};

export default Home;

0 comments on commit 06df909

Please sign in to comment.