Added the CharCounter tool to the routes index.jsx
This commit is contained in:
parent
6e555dfbad
commit
2378cd83f7
@ -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',
|
||||||
|
Reference in New Issue
Block a user