Row should not have class of Table ```ts const Row = ({ subject }: { subject: string }) => { const row = useResource<DataBrowser.Table>(subject); const [value] = useArray(resource, 'http://localhost:9883/class/Pokemon/property-mzOKDISV'); return <li>{row.title}: {value}</li>; }; ```