* Make the sidebar collapsable * Fix padding * Automatically collapase sidebar and hide container on mobile * Hide navbar content when navbar is collapsed * Update naming convention for states
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { RowSelectionState } from '@tanstack/react-table';
|
|
import { atom } from 'recoil';
|
|
|
|
export const currentRowSelectionState = atom<RowSelectionState>({
|
|
key: 'currentRowSelectionState',
|
|
default: {},
|
|
});
|