Account preview done

This commit is contained in:
2021-10-25 17:12:37 -03:00
parent cef25f5999
commit 423c8f9bfe
10 changed files with 239 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
import React from 'react'
import {withRouter} from 'react-router'
import AccountPreview from '../Account/AccountPreview/AccountPreview'
const AdminHeader = (props) => {
return (
@@ -13,6 +14,8 @@ const AdminHeader = (props) => {
>
Back to the Game
</button>
<AccountPreview />
</header>
)
}