import React from 'react'; const Wish = ({ name }) => { return (
HAPPY BIRTHDAY {name.toUpperCase()} !!!
); }; export default Wish;