import React from "react"; import { useAuth } from "../hooks"; import { ItemBox } from "../components/item/item"; export const Home = () => { const { user } = useAuth(); return (

Home page

{user &&

Hello {user.user.username}

}
); };