import React from 'react'; import AccountView from './AccountView'; const Account = (props) => { return <AccountView />; }; export default Account;