import React from "react";
import { Text, View } from "react-native";
import type { CharacterState } from "../types/Character";

/** Placeholder for etapa 2 (3D + lip sync). */
export function Character3D({ state }: { state: CharacterState }) {
  return (
    <View>
      <Text>Character3D stub — state: {state}</Text>
    </View>
  );
}
