import React from "react";
import { View } from "react-native";

/** Placeholder for etapa 2 bottle/label anchor. */
export function BottleAnchor({ children }: { children?: React.ReactNode }) {
  return <View>{children}</View>;
}
