16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
import React from "react";
|
|
|
|
import { useAuth } from "../hooks";
|
|
import { ItemPage } from "../components/item/ItemPage";
|
|
|
|
export const Test = () => {
|
|
const { user } = useAuth();
|
|
|
|
return (
|
|
<div>
|
|
<h1>Vive la macronie à bat montjoie saint dennis</h1>
|
|
<ItemPage></ItemPage>
|
|
</div>
|
|
);
|
|
};
|