We can pass the auth tokens to our front app via post message, which will also allow us to pass route names to navigate on it
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
export const chromeExtensionIdState = createState<string | null | undefined>({
|
|
key: 'chromeExtensionIdState',
|
|
defaultValue: null,
|
|
});
|