Lucas/t 352 i dont want another input cell to open when i click outside (#163)

* Added logic to handle global edit mode

* Added recoil global edit mode state into generic editable components

* Fix lint

* Added tests
This commit is contained in:
Lucas Bordeau
2023-05-31 16:33:11 +02:00
committed by GitHub
parent c61beb1066
commit 723ea462e8
10 changed files with 294 additions and 107 deletions

View File

@ -1,6 +1,6 @@
import { GraphqlQueryPerson } from '../../interfaces/entities/person.interface';
export const mockedPeopleData: Array<GraphqlQueryPerson> = [
export const mockedPeopleData = [
{
id: '7dfbc3f7-6e5e-4128-957e-8d86808cdf6b',
__typename: 'Person',
@ -70,4 +70,4 @@ export const mockedPeopleData: Array<GraphqlQueryPerson> = [
city: 'Paris',
},
];
] satisfies Array<GraphqlQueryPerson>;