import React from "react"; type BerriesProps = { name?: string; }; export const Berries = ({ name = "stranger" }: BerriesProps) => (