e03d5ed8a7
* wip * Changed all other components * Removed console log * Console.log * lint * Removed internal state * Fix * Lint
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { Column } from '@/ui/board/components/Board';
|
|
|
|
export const boardColumnsState = atom<Column[]>({
|
|
key: 'boardColumnsState',
|
|
default: [],
|
|
});
|