is there a more idiomatic way to write this? ```ts const username = createMemo(() => state.data?.displayName?.toLowerCase().split(" ")[0]); return ( <> <p>welcome{username() ? `, ${username()}` : ""}</p> ```