// Woodbury Resident — Profile. Registers window.RProfile. (function () { const NS = window.WoodburyPropertiesDesignSystem_7290ca; const { Card, CardHeader, Button, Badge, Avatar, Input, Eyebrow, Switch } = NS; function Field({ label, value, editing }) { if (editing) return ; return (
{label}
{value}
); } function RProfile() { const R = window.WBR.resident; const [editing, setEditing] = React.useState(false); return (
: } />
{editing && }

{R.name}

Active Tenant

{R.property} · {R.unit}

Notifications
{[["SMS alerts", "Maintenance updates & office notices", true], ["Email summaries", "Weekly account summary", true], ["Announcement push", "Community-wide announcements", false]].map(([t, d, on], i) => (
{t}
{d}
window.WBRToast(t + (v ? " on" : " off"), v ? undefined : "danger")} />
))}
); } window.RProfile = RProfile; })();