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 ...