// Woodbury Resident — Lease detail + notice to vacate. Registers window.RLease.
(function () {
const NS = window.WoodburyPropertiesDesignSystem_7290ca;
const { Card, CardHeader, Button, Badge, IconTile, Eyebrow, ProgressBar, Modal, Select, Textarea, Input } = NS;
function RLease({ onBack }) {
const L = window.WBR.lease;
const R = window.WBR.resident;
const [vacate, setVacate] = React.useState(false);
const pct = Math.round(((L.total - L.left) / L.total) * 100);
return (
Back} />
Active} />
{L.terms.map((t, i) => (
))}
Time Remaining
{L.left}
days left
{L.start}{L.end}
Lease Document
Signed Tenancy Agreement.pdf
248 KB · Signed 12 Apr
setVacate(false)} icon="calendar-x" title="Give Notice to Vacate" subtitle="Submit your intent to move out."
footer={}>
);
}
window.RLease = RLease;
})();