({ row }: { row: Row<Person> })
| 178 | } |
| 179 | |
| 180 | const renderSubComponent = ({ row }: { row: Row<Person> }) => { |
| 181 | return ( |
| 182 | <pre style={{ fontSize: '10px' }}> |
| 183 | <code>{JSON.stringify(row.original, null, 2)}</code> |
| 184 | </pre> |
| 185 | ) |
| 186 | } |
| 187 | |
| 188 | function App() { |
| 189 | const [data] = React.useState(() => makeData(10)) |