chore: demo app

This commit is contained in:
S. Gromov
2026-08-10 19:13:20 +03:00
parent d0a00fecbc
commit 993dab47df
162 changed files with 12145 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { createContext } from 'react'
import type { SessionContextValue } from '../types/session-context-value.type'
/** React-контекст application-scoped пользовательской сессии. */
export const SessionContext = createContext<SessionContextValue | null>(null)