import React, { Component } from "react"; import "./Account.css"; import Profile from "../../images/profile-picture.png"; import { withTranslation } from "react-i18next"; // import { useTranslation } from "react-i18next"; class Account extends Component { state = { Account: { firstName: "Kevon", lastName: "Green", email: "kevon.green@kcribs.com", password: "Kcribs123", phoneNumber: "613-234-8796", }, }; render() { const { t } = this.props; return (
{/* // send information to my login component */}

{t("Account_header")}

{t("Account_message")}

profile-img
{/*
*/}
); } } //links // https://www.pngitem.com/pimgs/m/146-1468479_my-profile-icon-blank-profile-picture-circle-hd.png export default withTranslation()(Account);