Ai
1 Star 0 Fork 0

mscorlib/kalendar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.js 593 Bytes
一键复制 编辑 原始数据 按行查看 历史
mscorlib 提交于 2022-05-15 20:18 +08:00 . 习惯管理
import React, { useEffect } from 'react';
import { LogBox } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import Root from './src/index';
import {checkTables} from '@data/index';
LogBox.ignoreLogs([
"[react-native-gesture-handler] Seems like you\'re using an old API with gesture components, check out new Gestures system!",
]);
export default function App() {
useEffect(()=>{
const check = async ()=>{
await checkTables();
}
check();
}, [])
return (
<NavigationContainer>
<Root/>
</NavigationContainer>
);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mscorlib/kalendar.git
git@gitee.com:mscorlib/kalendar.git
mscorlib
kalendar
kalendar
master

搜索帮助