index.tsx 709 B

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