nice stale state in main panel

This commit is contained in:
talksik
2022-05-13 12:55:51 -05:00
parent d907145d2d
commit e977b4a901
2 changed files with 18 additions and 1 deletions
@@ -0,0 +1,16 @@
import React from 'react';
import useAuth from '../../../../providers/AuthProvider';
export default function MainPanel() {
const { user } = useAuth();
return (
<div
className="flex flex-col flex-1 justify-center items-center bg-gray-100
border-l border-l-gray-200"
>
<span className="text-xl text-gray-800">{`Hi ${user.givenName}!`}</span>
<span className="text-md text-gray-400">{"You're all set!"}</span>
</div>
);
}