add greet logic

This commit is contained in:
Marcela Mathias 2022-11-02 15:55:13 -03:00
parent c6f6df9c59
commit b230bc1330

View File

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