aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/hooks/index.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-12-01 13:26:44 +0100
committerArmand Philippot <git@armandphilippot.com>2023-12-01 17:23:19 +0100
commitdfdbf6cac1fe3719dc71e130129d28e04ba4e225 (patch)
treef865bdad53cef95bdfb10fc04174a0173ab36f15 /src/utils/hooks/index.ts
parent5b762b1b669454a89899c4bdf6008027d9615acf (diff)
refactor(pages): refine Thematic pages
* add a table of contents (however posts heading are not included) * rename posts list section title * add a useThematic hook to refresh thematic contents * add a useThematicLists hook to refresh thematics list * add a `notIn` filter in thematics list fetcher to directly remove unwanted thematics * add Cypress tests
Diffstat (limited to 'src/utils/hooks/index.ts')
-rw-r--r--src/utils/hooks/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/hooks/index.ts b/src/utils/hooks/index.ts
index f3bfd75..3fb0ad4 100644
--- a/src/utils/hooks/index.ts
+++ b/src/utils/hooks/index.ts
@@ -22,6 +22,8 @@ export * from './use-scroll-lock';
export * from './use-scroll-position';
export * from './use-scrollbar-width';
export * from './use-system-color-scheme';
+export * from './use-thematic';
+export * from './use-thematics-list';
export * from './use-theme';
export * from './use-timeout';
export * from './use-toggle';