import React from "react";

export const Berries = ({ name = "stranger" }) => (
  <div>Hello, {name}. I'm built with aqu 🌊!</div>
);
