// Woodbury Resident — Documents. Registers window.RDocuments. (function () { const NS = window.WoodburyPropertiesDesignSystem_7290ca; const { Card, CardHeader, Button, Badge, IconTile, Input } = NS; function RDocuments() { const R = window.WBR; const loading = window.WBRuseLoad(); const [q, setQ] = React.useState(""); const rows = R.documents.filter((d) => !q || d.name.toLowerCase().includes(q.toLowerCase())); return (

Files

setQ(e.target.value)} containerStyle={{ width: 280 }} />
{loading ? : rows.map((d, i) => (
{d.name}
{d.meta}
{d.tag}
))} {!loading && rows.length === 0 && }
Need another document?
Request a copy of any record from the management office.
); } window.RDocuments = RDocuments; })();