Files
twenty/front/src/modules/pipeline-progress/states/boardColumnsState.ts
T
Lucas Bordeau e03d5ed8a7 Refactor/inplace input (#541)
* wip

* Changed all other components

* Removed console log

* Console.log

* lint

* Removed internal state

* Fix

* Lint
2023-07-08 16:45:52 -07:00

9 lines
184 B
TypeScript

import { atom } from 'recoil';
import { Column } from '@/ui/board/components/Board';
export const boardColumnsState = atom<Column[]>({
key: 'boardColumnsState',
default: [],
});