import React from "react"; type BerriesProps = { name?: string; }; export const Berries = ({ name = "stranger" }: BerriesProps) => (
Hello, {name}. I'm built with aqu 🌊!
);