Add display user page

This commit is contained in:
Kurt Hutten
2020-11-04 07:21:47 +11:00
parent a28f126f9c
commit 217cb31ed2
11 changed files with 132 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
import MainLayout from 'src/layouts/MainLayout'
import User2Cell from 'src/components/User2Cell'
const UserPage = ({ userName }) => {
return (
<MainLayout>
<User2Cell userName={userName} />
</MainLayout>
)
}
export default UserPage