diff options
Diffstat (limited to 'client/components/home/_home.jsx')
-rw-r--r-- | client/components/home/_home.jsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/components/home/_home.jsx b/client/components/home/_home.jsx index 4b1ab46..405a968 100644 --- a/client/components/home/_home.jsx +++ b/client/components/home/_home.jsx @@ -4,6 +4,7 @@ import { ApiContext } from '../../utils/api_context'; import { AuthContext } from '../../utils/auth_context'; import { RolesContext } from '../../utils/roles_context'; import { Button } from '../common/button'; +import { Ping } from './ping'; export const Home = () => { const [, setAuthToken] = useContext(AuthContext); @@ -42,6 +43,9 @@ export const Home = () => { Admin </Button> )} + <section> + <Ping /> + </section> </div> ); }; |