Files
aystone-manager/app/outils/page.tsx
T

10 lines
212 B
TypeScript
Raw Normal View History

import OutilsPage from "@/components/OutilsPage";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Outils | Aystone",
};
export default function Page() {
return <OutilsPage />;
}