Skip to content

Commit b12db35

Browse files
committed
Use TextComparison component in App
1 parent b78a298 commit b12db35

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

validator/frontend/src/App.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import ByCharacter from "./layout/Confusables/ByCharacter/ByCharacter";
88
import ByLabel from "./layout/Confusables/ByLabel/ByLabel";
99
import TextSearch from "./layout/Confusables/TextSearch/TextSearch";
1010
import OcrUpload from "./layout/Confusables/OpticalCharacterRecognition/OcrUpload";
11+
import TextComparison from "./layout/Confusables/TextComparison/TextComparison";
1112

1213
import "./App.css";
1314

@@ -49,6 +50,7 @@ function App() {
4950
{ id: "character", label: "Search by character" },
5051
{ id: "all", label: "All confusables " },
5152
{ id: "ocr", label: "OCR" },
53+
{ id: "text-comparison", label: "Text comparison" },
5254
]}
5355
tabPanels={[
5456
{
@@ -71,6 +73,10 @@ function App() {
7173
id: "ocr",
7274
children: <OcrUpload />,
7375
},
76+
{
77+
id: "text-comparison",
78+
children: <TextComparison />,
79+
},
7480
]}
7581
/>
7682
</main>

0 commit comments

Comments
 (0)