rn-components
Installation
SKILL.md
React Native Components & Styling
Instructions
Write function components only. Keep them small, pure, and presentational. Push state and effects into hooks.
1. Component Shape
// src/shared/ui/Button.tsx
import { memo } from 'react';
import { Pressable, Text, StyleSheet } from 'react-native';
import type { PressableProps } from 'react-native';
type Variant = 'primary' | 'secondary';