7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const authFlowUserEmailState = atom<string>({
|
|
key: 'authFlowUserEmailState',
|
|
default: '',
|
|
});
|