* Proof of concept ComponentState * Migrate to createState and createFamilyState * Refactor * Fix * Fix tests * Fix lint * Fix tests * Re-enable coverage
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { createFamilyState } from '@/ui/utilities/state/utils/createFamilyState';
|
|
|
|
export const generatedApiKeyFamilyState = createFamilyState<
|
|
string | null | undefined,
|
|
string
|
|
>({
|
|
key: 'generatedApiKeyFamilyState',
|
|
defaultValue: null,
|
|
});
|