1
2
3
4
5
6
export function myApi(name) {
if (!name) {
return "hi you!";
}
return "hi " + name;
}