projeto-hit/frontend/src/components/PageTitle/UserBtn/UserBtn.jsx

15 lines
313 B
React
Raw Normal View History

import React from "react";
import { UserBtnStyled } from "../PageTitle.style";
const UserBtn = ({ user, img }) => {
return (
<UserBtnStyled>
<img src={img} alt={user ? user.name : null} width="24px" />
Bem Vindo, {user ? user.name : null}
</UserBtnStyled>
);
};
export default UserBtn;