summaryrefslogtreecommitdiff
path: root/actions/passkey.ts
diff options
context:
space:
mode:
Diffstat (limited to 'actions/passkey.ts')
-rw-r--r--actions/passkey.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/actions/passkey.ts b/actions/passkey.ts
new file mode 100644
index 0000000..1428337
--- /dev/null
+++ b/actions/passkey.ts
@@ -0,0 +1,8 @@
+"use server";
+
+import { Text } from "react-native";
+
+export default async function renderInfo({ name }) {
+ // Securely fetch data from an API, and read environment variables...
+ return <Text>Hello, {name}!</Text>;
+}