diff --git a/README.md b/README.md index a8ca961..c99c637 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # react-native-sqlite-explorer -Explorer for sqlite database inside react native app +Explorer for react-native-sqlite-storage library database inside react native app ## Installation @@ -10,19 +10,23 @@ npm install react-native-sqlite-explorer ## Usage - ```js -import { multiply } from 'react-native-sqlite-explorer'; +import SQLiteExplorer from 'react-native-sqlite-explorer'; -// ... +const DBExplorer = () => { + // your baseName that you used in params: + // SQLite.openDatabase({ name: baseName, location: 'default' }.... + const baseName = ''; -const result = await multiply(3, 7); -``` + return ; +}; +export default DBExplorer; +``` -## Contributing +## Tips -See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. +Temporarily only for Android ## License diff --git a/package.json b/package.json index aac4db9..5996d27 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-sqlite-explorer", - "version": "0.1.4", - "description": "Explorer for sqlite database inside react native app", + "version": "0.1.5", + "description": "Explorer for react-native-sqlite-storage library database inside react native app", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", "module": "./lib/module/index.js",