feat(01-greeting): Cria a função

This commit is contained in:
Leonardo Pereira Rocha 2022-10-28 17:45:10 -03:00
parent c6f6df9c59
commit 02fe50448c

View File

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