Add linkedinUrl and job titles to table views (#809)
* Add linedinUrl and job titles to table views * Keep address in the end * Add mock data
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
import { atomFamily } from 'recoil';
|
||||
|
||||
export const peopleJobTitleFamilyState = atomFamily<string | null, string>({
|
||||
key: 'peopleJobTitleFamilyState',
|
||||
default: null,
|
||||
});
|
||||
@ -0,0 +1,6 @@
|
||||
import { atomFamily } from 'recoil';
|
||||
|
||||
export const peopleLinkedinUrlFamilyState = atomFamily<string | null, string>({
|
||||
key: 'peopleLinkedinUrlFamilyState',
|
||||
default: null,
|
||||
});
|
||||
Reference in New Issue
Block a user