index.tsx 662 B

12345678910111213141516171819202122232425262728293031
  1. import Toolbar from '@mui/material/Toolbar'
  2. import AppBar from '@mui/material/AppBar';
  3. import { makeStyles } from '@material-ui/core'
  4. import Credentials from './Credentials'
  5. import Buttons from './Buttons'
  6. const useStyles = makeStyles({
  7. toolBar: {
  8. color: '#6e6d6d',
  9. display: 'flex',
  10. justifyContent: 'space-between',
  11. backgroundColor: '#ffffff',
  12. height:'7vh'
  13. },
  14. })
  15. const HeaderBar = () => {
  16. const classes = useStyles()
  17. return (
  18. <AppBar position="static">
  19. <Toolbar className={classes.toolBar}>
  20. <Credentials/>
  21. <Buttons/>
  22. </Toolbar>
  23. </AppBar>
  24. )
  25. }
  26. export default HeaderBar