* feat: put workspaces under unfinished features flag * fix: mention that signing out will quit the app * fix: put more affected places under features flag
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { TEnvironment } from '@Root/App'
|
|
import React from 'react'
|
|
|
|
export const EnvironmentContext = React.createContext<TEnvironment | undefined>(undefined)
|
|
|
|
export const SafeEnvironmentContext = EnvironmentContext as React.Context<TEnvironment>
|