feature/auth #3

Merged
M1000fr merged 17 commits from feature/auth into development 2024-12-24 08:45:32 +00:00
Showing only changes of commit bc880295c4 - Show all commits

View File

@ -21,15 +21,11 @@ export const FetchApi = () => {
>
Fetch API
</button>
<div className="mt-4">
{date ? (
<p className="text-white">Server time: {date}</p>
) : (
<p className="text-white">
Click the button to fetch the API
</p>
)}
</div>
{date ? (
<p>Server time: {date}</p>
) : (
<p>Click the button to fetch the API</p>
)}
</div>
);
};