1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 18:26:38 -04:00

consistent arrow functions

This commit is contained in:
2025-03-12 18:10:11 -04:00
parent 6a57fde2f1
commit e61ca889a7
39 changed files with 121 additions and 126 deletions

View File

@ -21,7 +21,7 @@ export const metadata: Metadata = {
},
};
export default function Page() {
const Page = () => {
return (
<>
<PageTitle canonical="/leo">TheLab.mov</PageTitle>
@ -49,4 +49,6 @@ export default function Page() {
</p>
</>
);
}
};
export default Page;