From 3b84d67984a05d49fe9e84becec5c68f73df6f77 Mon Sep 17 00:00:00 2001 From: Anatol Melaku Jirata <48455277+amelaku8@users.noreply.github.com> Date: Fri, 20 Sep 2024 05:39:44 +0300 Subject: [PATCH] Update part6b.md it is not clear what create slice function returns and what the module exports. --- src/content/6/en/part6b.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/6/en/part6b.md b/src/content/6/en/part6b.md index f79cddd6eb7..20d8bd0b1ec 100644 --- a/src/content/6/en/part6b.md +++ b/src/content/6/en/part6b.md @@ -512,6 +512,8 @@ const noteSlice = createSlice({ } }, }) +export const {createNote,toggleImportanceOf} = noteSlice.actions +export default noteSlice.reducer // highlight-end ```