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