9 lines
316 B
TypeScript
9 lines
316 B
TypeScript
import { GlobalContext } from "@/reffuse"
|
|
import { ReffuseContext } from "@thilawyn/reffuse"
|
|
import { make } from "@thilawyn/reffuse/Reffuse"
|
|
import { PostsState } from "./services"
|
|
|
|
|
|
export const PostsContext = ReffuseContext.make<PostsState.PostsState>()
|
|
export const Reffuse = make([GlobalContext, PostsContext])
|