Frontend for https://github.com/twentyhq/core-team-issues/issues/293 POC - https://github.com/twentyhq/twenty/pull/9903 --------- Co-authored-by: Félix Malfait <felix@twenty.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const adminPanelErrorState = atom<string | null>({
|
|
key: 'adminPanelErrorState',
|
|
default: null,
|
|
});
|