diff options
author | Sebastian <sebasjm@gmail.com> | 2023-02-08 17:36:26 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-02-08 17:36:26 -0300 |
commit | be01d1479cf650fe8eb0c8e567620abfa4544e1e (patch) | |
tree | a1a0e6f45e6e2fdacca9df77aeb7cf1a065b312d /packages/web-util/src/context/index.ts | |
parent | f7982ed99672709908d378c7abc02300440a4ac2 (diff) |
move request api to web-util
Diffstat (limited to 'packages/web-util/src/context/index.ts')
-rw-r--r-- | packages/web-util/src/context/index.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/web-util/src/context/index.ts b/packages/web-util/src/context/index.ts index 4bc1b22f2..9ed3ef645 100644 --- a/packages/web-util/src/context/index.ts +++ b/packages/web-util/src/context/index.ts @@ -1,5 +1,7 @@ +export { ApiContextProvider, useApiContext } from "./api.js"; export { InternationalizationAPI, TranslationProvider, - useTranslationContext, + useTranslationContext } from "./translation.js"; + |