This would produce a warning: ``` <span> { tab.title } </span> ``` as it produces 3 `<span>` DOM nodes (typically not wanted) This wouldn't: ``` <span>{ tab.title }</span> ```