get_hook_example
Generate React Native hook code examples quickly. Specify a hook name to receive a pre-built implementation, ensuring alignment with BluestoneApps coding standards.
Instructions
Get a React Native hook example
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hook_name | Yes | Hook Name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hook_name": {
"description": "Hook Name",
"type": "string"
}
},
"required": [
"hook_name"
],
"type": "object"
}