8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
import { atom } from 'recoil';
|
|
import { RightDrawerPage } from '../types/RightDrawerPage';
|
|
|
|
export const rightDrawerPageState = atom<RightDrawerPage | null>({
|
|
key: 'ui/layout/right-drawer-page',
|
|
default: 'comments',
|
|
});
|