summaryrefslogtreecommitdiff
path: root/actions/render-info.tsx
blob: 1428337bebf50e59722677c3770f9d1ff52c5337 (plain)
1
2
3
4
5
6
7
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>;
}