Use forms with or without client-side JavaScript--no code duplication required!
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

10 rindas
287 B

  1. import {NextPage} from 'next';
  2. import * as Iceform from '@modal-sh/iceform-next';
  3. import {greet} from '@/handlers/greet';
  4. const ActionGreetPage: NextPage = () => null;
  5. export default ActionGreetPage;
  6. export const getServerSideProps = Iceform.action.getServerSideProps({ fn: greet });