From 4cb12caa9a9b79a7d412149d230aeae0a1f598e8 Mon Sep 17 00:00:00 2001 From: Ashu Sharma <83147149+ashu-sharma07@users.noreply.github.com> Date: Sun, 11 Aug 2024 13:36:56 +0530 Subject: [PATCH] import ID in Registering user example ID was missing as an import in Register User full example leading to a import error by adding ID will fix the issue --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 94816ac9..60e31f58 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ account.create(ID.unique(), 'me@example.com', 'password', 'Jane Doe') ### Full Example ```js -import { Client, Account } from 'react-native-appwrite'; +import { Client, Account, ID } from 'react-native-appwrite'; // Init your React Native SDK const client = new Client(); @@ -113,4 +113,4 @@ This library is auto-generated by Appwrite custom [SDK Generator](https://github ## License -Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information. \ No newline at end of file +Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.