* Wip refactoring view * Post merge conflicts * Fix review * Add create view capability * Fix create object missing view * Fix tests
18 lines
406 B
TypeScript
18 lines
406 B
TypeScript
import { useRecoilValue } from 'recoil';
|
|
|
|
import { currentUserState } from '@/auth/states/currentUserState';
|
|
import { TextInput } from '@/ui/input/components/TextInput';
|
|
|
|
export const EmailField = () => {
|
|
const currentUser = useRecoilValue(currentUserState);
|
|
|
|
return (
|
|
<TextInput
|
|
value={currentUser?.email}
|
|
disabled
|
|
fullWidth
|
|
key={'email-' + currentUser?.id}
|
|
/>
|
|
);
|
|
};
|