appwrite/docs/examples/1.6.x/client-react-native/examples/locale/get.md
2025-04-24 14:46:03 +00:00

315 B

import { Client, Locale } from "react-native-appwrite";

const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const locale = new Locale(client);

const result = await locale.get();

console.log(result);