Files
2024-DEV-BUT3/src/pages/home.jsx

15 lines
241 B
React
Raw Normal View History

2024-03-27 10:51:41 +01:00
import React from "react";
import { useAuth } from "../hooks";
export const Home = () => {
const { user } = useAuth();
return (
<div>
<h1>Home page</h1>
{user && <h2>Hello {user.user.username}</h2>}
</div>
);
};