Split from https://github.com/twentyhq/twenty/pull/4518 Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
import { Billing } from '~/generated/graphql';
|
|
|
|
export const billingState = createState<Billing | null>({
|
|
key: 'billingState',
|
|
defaultValue: null,
|
|
});
|