464a480043
Might already fix #13793
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { type ProfilingDataPoint } from '~/testing/profiling/types/ProfilingDataPoint';
|
|
|
|
export const profilingSessionState = atom<Record<string, ProfilingDataPoint[]>>(
|
|
{
|
|
key: 'profilingSessionState',
|
|
default: {},
|
|
},
|
|
);
|