File size: 1,674 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
import {
AppBar,
Container,
MenuItem,
Select,
Toolbar,
Typography,
} from "@material-ui/core";
import {
createTheme,
makeStyles,
ThemeProvider,
} from "@material-ui/core/styles";
import { useHistory } from "react-router-dom";
import { CryptoState } from "../CryptoContext";
const useStyles = makeStyles((theme) => ({
title: {
flex: 1,
color: "gold",
fontFamily: "Montserrat",
fontWeight: "bold",
cursor: "pointer",
},
}));
const darkTheme = createTheme({
palette: {
primary: {
main: "#fff",
},
type: "dark",
},
});
function Header() {
const classes = useStyles();
const { currency, setCurrency } = CryptoState();
const history = useHistory();
return (
<ThemeProvider theme={darkTheme}>
<AppBar color="transparent" position="static">
<Container>
<Toolbar>
<Typography
onClick={() => history.push(`/`)}
variant="h6"
className={classes.title}
>
Crypto Hunter
</Typography>
{/* <Button color="inherit">Login</Button> */}
<Select
variant="outlined"
labelId="demo-simple-select-label"
id="demo-simple-select"
value={currency}
style={{ width: 100, height: 40, marginLeft: 15 }}
onChange={(e) => setCurrency(e.target.value)}
>
<MenuItem value={"USD"}>USD</MenuItem>
<MenuItem value={"INR"}>INR</MenuItem>
</Select>
</Toolbar>
</Container>
</AppBar>
</ThemeProvider>
);
}
export default Header;
|