aboutsummaryrefslogtreecommitdiff
path: root/src/pages/HomePage/HomePage.tsx
blob: 6930cc85cc7c34830e9627149f3ccbecfc17502d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React, { useState } from 'react';
import { Typography } from '@material-ui/core/';
import { makeStyles } from '@material-ui/core/styles';

const useStyles = makeStyles({
});

const HomePage: React.FC = () => {
  const classes = useStyles();

  return (
    <>
  <Typography variant="h3"> Which one to choose? </Typography>

    </>
  );
};

export default HomePage;