6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { RatesStore } from "@/types/contexts/rates"
|
|
|
|
export const RatesContext = createContext<RatesStore | null>(null)
|