* Adding message thread component * Add state and mocks * Rename components and use local state for messages --------- Co-authored-by: Thomas Trompette <thomast@twenty.com>
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { MockedThread } from '@/activities/emails/mocks/mockedEmailThreads';
|
|
|
|
export const viewableEmailThreadState = atom<MockedThread | null>({
|
|
key: 'viewableEmailThreadState',
|
|
default: null,
|
|
});
|