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'> Test </div>) };
1 2 3 4 5 6 7 8 9 10
import { useGlobalStore } from '../utils'; export const Dashboard = () => { const { authenticated } = useGlobalStore(); return (<div className='flex flex-col w-full'> Test </div>) };