您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

database-connect.js 258B

123456
  1. import {openDatabase} from 'react-native-sqlite-storage';
  2. // TODO reprends ici https://blog.logrocket.com/using-sqlite-with-react-native/
  3. export const getDBConnection = async () => {
  4. return openDatabase({name: 'todo-data.db', location: 'default'});
  5. };