2024-03-27 11:36:49 +01:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import { useAuth } from "../hooks";
|
2024-03-27 16:33:24 +01:00
|
|
|
import { ItemPage } from "../components/item/ItemPage";
|
2024-03-27 11:36:49 +01:00
|
|
|
|
|
|
|
export const Test = () => {
|
|
|
|
const { user } = useAuth();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2024-03-27 16:33:24 +01:00
|
|
|
<h1>Vive la macronie à bat montjoie saint dennis</h1>
|
|
|
|
<ItemPage></ItemPage>
|
2024-03-27 11:36:49 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|