You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. };