ymanager/client/src/LogOut.js @ c46ffe2f
1 |
import React from 'react'; |
---|---|
2 |
import './App.css'; |
3 |
|
4 |
function LogOut() { |
5 |
|
6 |
return ( |
7 |
<div className="login-container logout column"> |
8 |
<h1>You have been successfully logged out!</h1> |
9 |
<h4>Click to log in</h4> |
10 |
</div> |
11 |
)
|
12 |
}
|
13 |
|
14 |
export default LogOut; |
15 |
|