* Fixed BoardColumnMenu * Fixed naming * Optimized board loading * Added GenericEditableField * Introduce GenericEditableField for BoardCards * remove logs * delete unused files * fix stories --------- Co-authored-by: corentin <corentin@twenty.com>
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
import { CompanyProgress } from '@/companies/types/CompanyProgress';
|
|
|
|
export const companyBoardIndexState = atomFamily<
|
|
CompanyProgress | undefined,
|
|
string
|
|
>({
|
|
key: 'companyBoardIndexState',
|
|
default: undefined,
|
|
});
|