oktopus/frontend/src/hooks/use-mocked-user.js
Leandro Antônio Farias Machado d297fecc62 chore: create proj structure
2023-03-07 13:33:32 +00:00

11 lines
299 B
JavaScript

export const useMockedUser = () => {
// To get the user from the authContext, you can use
// `const { user } = useAuth();`
return {
id: '5e86809283e28b96d2d38537',
avatar: '/assets/avatars/avatar-anika-visser.png',
name: 'Anika Visser',
email: 'anika.visser@devias.io'
};
};