CipherStreamWeb converted to use Vite

This commit is contained in:
Mattrixwv
2025-08-13 23:31:29 -04:00
parent 70f9adb930
commit c9bddfa74d
120 changed files with 13931 additions and 3 deletions

View File

@@ -0,0 +1,37 @@
import CipherLoader from '@/components/ciphers/CipherLoader';
import MorseInputs from '@/components/ciphers/polysubstitution/morse/MorseInputs';
import { useGetMorseInfo } from '@/hooks/polysubstitution/MorseHooks';
import { createFileRoute } from '@tanstack/react-router';
/*
{
title: "Morse Code",
description: "",
keywords: [
"Morse",
"Morse Code"
]
}
*/
export const Route = createFileRoute('/polysubstitution/morse/')({
component: MorsePage
});
function MorsePage(){
const morseInfoQuery = useGetMorseInfo();
return (
<main
className="flex flex-col items-center justify-center"
>
<CipherLoader infoQuery={morseInfoQuery}>
<MorseInputs/>
</CipherLoader>
</main>
);
}