feat: implementa função greet

This commit is contained in:
RodrigoJorge 2022-10-28 14:20:15 -03:00
parent c6f6df9c59
commit 36363c9660

View File

@ -1,4 +1,4 @@
export function greet(name) {
// implementar logica aqui
return "";
return `Hello ${name}`;
}