Spaces:
Runtime error
Runtime error
File size: 117 Bytes
3b6afc0 |
1 2 3 4 5 6 7 8 9 10 11 |
import { atom } from 'recoil';
const user = atom({
key: 'user',
default: null,
});
export default {
user,
};
|