vic commit
This commit is contained in:
@@ -1,23 +1,33 @@
|
||||
import React from "react";
|
||||
|
||||
import { useAuth } from "../hooks";
|
||||
import { ItemBox } from "../components/item/item";
|
||||
import { ItemPage } from "../components/item/ItemPage";
|
||||
|
||||
|
||||
export const Home = () => {
|
||||
const { user } = useAuth();
|
||||
|
||||
return (
|
||||
<div>
|
||||
|
||||
<h1>Home page</h1>
|
||||
{user && <h2>Hello {user.user.username}</h2>}
|
||||
<ItemBox
|
||||
imageUrl={//"https://static.wikia.nocookie.net/battle-fighters-the-ultimate-fighters/images/4/4b/Globglogabgalab.png/revision/latest?cb=20180829050629"}
|
||||
"https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/578bae69-d8ef-497b-a717-98873dd69814/dc9u91c-fd73ab67-bc8e-49e4-92f0-7367d361f2fd.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzU3OGJhZTY5LWQ4ZWYtNDk3Yi1hNzE3LTk4ODczZGQ2OTgxNFwvZGM5dTkxYy1mZDczYWI2Ny1iYzhlLTQ5ZTQtOTJmMC03MzY3ZDM2MWYyZmQucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.NY_H3uLiv4l0MgogmSxt30irVbaMH5JXR62q898y6LI"}
|
||||
brandName={"GlubGlub GabGalab"}
|
||||
price={666}
|
||||
modelName={"Satanus"}
|
||||
purchaseDate={"-6 avant Marcel PAGNOL"}
|
||||
/>
|
||||
<ItemPage items={
|
||||
[
|
||||
{
|
||||
brandName:"GlubGlub GabGalab"
|
||||
},{
|
||||
brandName:"GlubGlub GabGalab2"
|
||||
},{
|
||||
brandName:"GlubGlub GabGalab"
|
||||
},{
|
||||
brandName:"GlubGlub GabGalab2"
|
||||
},{
|
||||
brandName:"GlubGlub GabGalab"
|
||||
},{
|
||||
brandName:"GlubGlub GabGalab2"
|
||||
}
|
||||
]
|
||||
}></ItemPage>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user