fischerX/tools/cli/templates/page/page.tsx.template

15 lines
319 B
Plaintext

'use client';
import React from 'react';
interface {{pascalName}}PageProps {
}
export default function {{pascalName}}Page({}: {{pascalName}}PageProps) {
return (
<div className="min-h-screen flex items-center justify-center">
<h1 className="text-4xl font-bold">{{pascalName}} Page</h1>
</div>
);
}