Files
TechRadarAJR/src/pages/index.tsx
2024-03-11 10:40:14 +01:00

8 lines
134 B
TypeScript

import { CustomPage } from "@/pages/_app";
const Home: CustomPage = () => {
return <h1>Hello world.</h1>;
};
export default Home;