8 lines
193 B
React
8 lines
193 B
React
import React from 'react'
|
|
import AccountViewCom from "../components/account_view/AccountViewCom";
|
|
export default function AccountDetailsPage() {
|
|
return (
|
|
<AccountViewCom />
|
|
)
|
|
}
|