Split from https://github.com/twentyhq/twenty/pull/4518 Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
export const currentUserDueTaskCountState = createState<number>({
|
|
defaultValue: 0,
|
|
key: 'currentUserDueTaskCountState',
|
|
});
|