From 8e92f513fd2163c486a1725d82db022066272bc5 Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 11 Oct 2022 14:50:35 +0500 Subject: [PATCH] try feedback widget --- src/components/Chapter.js | 2 + src/components/ChapterFeedback.tsx | 96 ++++++++++++++++++++++++ src/games/sub-cores/EquativeIdentify.tsx | 1 - src/lib/entry-feeder.ts | 2 - src/lib/useDictionary.ts | 2 - 5 files changed, 98 insertions(+), 5 deletions(-) create mode 100644 src/components/ChapterFeedback.tsx diff --git a/src/components/Chapter.js b/src/components/Chapter.js index a2e6ba3..8e23b7d 100644 --- a/src/components/Chapter.js +++ b/src/components/Chapter.js @@ -8,6 +8,7 @@ import TableOfContents from "./TableOfContents"; import Footer from "./Footer"; +import ChapterFeedback from "./ChapterFeedback"; const Chapter = ({ children: chapter }) => { const Content = chapter.content; @@ -33,6 +34,7 @@ const Chapter = ({ children: chapter }) => { +