UNPKG

create-bar-project

Version:

This module helps create a base for web application projects.

5 lines (3 loc) 184 B
import { makeVar, ReactiveVar } from '@apollo/client'; import { User } from 'Common/Models'; export const currentUserVar: ReactiveVar<User | null> = makeVar(null as User | null);