📦 EqualifyEverything / equalify-v2-web

📄 Dashboard.tsx · 10 lines
1
2
3
4
5
6
7
8
9
10import { useGlobalStore } from '../utils';

export const Dashboard = () => {
    const { authenticated } = useGlobalStore();

    return (<div className='flex flex-col w-full'>
        Dashboard
    </div>)
};