Files
CipherStreamWeb/src/routes/monosubstitution/beaufort/index.tsx
2026-08-15 17:28:19 -04:00

38 lines
796 B
TypeScript

import CipherLoader from "@/components/ciphers/CipherLoader";
import BeaufortInputs from "@/components/ciphers/monosubstitution/beaufort/BeaufortInputs";
import { useGetBeaufortInfo } from "@/hooks/monosubstitution/BeaufortHooks";
import { createFileRoute } from "@tanstack/react-router";
/*
{
title: "Beaufort",
description: "",
keywords: [
"Beaufort"
]
}
*/
export const Route = createFileRoute("/monosubstitution/beaufort/")({
component: BeaufortPage
});
// eslint-disable-next-line react-refresh/only-export-components
function BeaufortPage(){
const beaufortInfoQuery = useGetBeaufortInfo();
return (
<main
className="flex flex-col items-center justify-center"
>
<CipherLoader infoQuery={beaufortInfoQuery}>
<BeaufortInputs/>
</CipherLoader>
</main>
);
}