This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import React, { Component } from 'react'
import {Box, Toolbar, AppBar, IconButton, Typography, Button} from '@mui/material'
const Header = () =>{
return (
<Box bgcolor="white" sx={{ flexGrow: 1}}>
<AppBar position='static'>
<Toolbar>
<Typography variant='h6' component="div" sx={{flexGrow : 1}}>
Система подбора персонала
</Typography>
<Button color="inherit">Вход</Button>
</Toolbar>
</AppBar>
</Box>
)
}
export default Header;
Powered by TurnKey Linux.