7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
export const apiKeyTokenState = createState<string | null>({
|
|
key: 'apiKeyTokenState',
|
|
defaultValue: null,
|
|
});
|