Added the CharCounter tool to the routes index.jsx

This commit is contained in:
Mathias Wagner 2023-08-04 22:22:06 +02:00
parent 6e555dfbad
commit 2378cd83f7
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,4 +1,5 @@
import { import {
faArrowUp19,
faBox, faBox,
faFolder, faLocationPin, faFolder, faLocationPin,
faLock, faLock,
@ -17,6 +18,7 @@ import RemoteSFTP from "@/pages/tools/linux/RemoteSFTP";
import {createRef} from "react"; import {createRef} from "react";
import Imprint from "@/pages/legal/Imprint"; import Imprint from "@/pages/legal/Imprint";
import Privacy from "@/pages/legal/Privacy"; import Privacy from "@/pages/legal/Privacy";
import CharCounter from "@/pages/tools/text/CharCounter";
export const routes = { export const routes = {
Allgemein: [ Allgemein: [
@ -51,6 +53,14 @@ export const routes = {
ref: createRef() ref: createRef()
} }
], ],
Text: [
{
path: '/text/char-counter',
name: 'Zeichenzähler',
icon: faArrowUp19,
component: <CharCounter />
}
],
Linux: [ Linux: [
{ {
path: '/linux/ssh', path: '/linux/ssh',