Files
DevToysWeb/app/generators/hash/layout.tsx
2024-04-04 11:31:41 +09:00

13 lines
333 B
TypeScript

import { Metadata } from "next";
import { toolGroups } from "@/config/tools";
export const metadata: Metadata = {
title: toolGroups.generators.tools.hash.longTitle,
description: toolGroups.generators.tools.hash.description,
};
export default function Layout({ children }: { children: React.ReactNode }) {
return children;
}