mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
import React from "react"
|
|
|
|
interface ContextValue {
|
|
count?: () => void
|
|
}
|
|
|
|
export const Context = React.createContext<ContextValue>({})
|