Exercise 8: Optimized Session Handling
We will run and verify our app implemented so far after optimized Session Handling.
Project
import React from 'react'; const Account = () => ( <div> <h1>Account</h1> </div> ); export default Account;
Nothing seems to have changed from the outside. Our application still functions the same way but the code has become simpler since we now use a higher-order session handling component.
There is no need to import the ...