index.tsx 739 B

1234567891011121314151617
  1. import React from "react";
  2. import MultiStepForm from "../../../component/registrationMultiStepForm/multi_step_form";
  3. export default function Index() {
  4. /**********************************狀態管理**********************************/
  5. /**********************************狀態管理**********************************/
  6. /**********************************組件初始化**********************************/
  7. /**********************************組件初始化**********************************/
  8. /**********************************異步函數**********************************/
  9. /**********************************異步函數**********************************/
  10. return (
  11. ////testing component here
  12. <>
  13. <MultiStepForm />
  14. </>
  15. );
  16. }