## Context This PR introduces the new Create and Edit role components, behind the PERMISSIONS_ENABLED_V2 feature flag.
7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const settingsRoleIdsState = atom<string[]>({
|
|
key: 'settingsRoleIdsState',
|
|
default: [],
|
|
});
|