mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
import { createState } from '@ui/utilities/state/utils/createState';
|
|
|
|
export const apiKeyTokenState = createState<string | null>({
|
|
key: 'apiKeyTokenState',
|
|
defaultValue: null,
|
|
});
|