Kenny Logout - I'm Alright (theme from Caddyshack)

This commit is contained in:
MarcEricMartel
2022-10-30 15:27:36 -07:00
parent cf3cb2a895
commit 63a02da413
3 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
const Logout = () => {
const response = fetch(`https://localhost:7292/api/Logout`, {
method: 'POST',
})
return (
<div className="inventaire-form-container">
<h3 className="text-center">Vous n'êtes plus connecté!</h3>
<h5 className="text-center">Faites le party ou quelque-chose...</h5>
</div>
)
}
export default Logout;