Age: {state.user.age}
Active: {state.user.active ? "Yes" : "No"}
Bio: {state.user.profile.bio}
Location: {state.user.profile.location}
Theme: {state.user.profile.settings.theme}
Notifications:{" "} {state.user.profile.settings.notifications ? "On" : "Off"}
Age + 1: {state.user.age + 1}
Name length: {state.user.name.length}
Uppercase name: {state.user.name.toUpperCase()}
Location includes city:{" "} {state.user.profile.location.includes("City") ? "Yes" : "No"}
Item at index: {state.items[state.index]}
First item: {state.items[0]}
Last item: {state.items[state.items.length - 1]}
Number at index: {state.numbers[state.index]}
Styled text
{state.user.name + " from " + state.user.profile.location}
Font size + 2: {state.config.theme.fontSize + 2}px
Has beta and dark mode:{" "} {state.config.features.beta && state.config.features.darkMode ? "Yes" : "No"}