Skip to content

Instantly share code, notes, and snippets.

@SergeyMell
Created September 17, 2020 22:04
Show Gist options
  • Save SergeyMell/96462dee9f2a5c236030154d3197127a to your computer and use it in GitHub Desktop.
Save SergeyMell/96462dee9f2a5c236030154d3197127a to your computer and use it in GitHub Desktop.
TypeORM joined tables in AdminBro back office - PropertyItem component
import * as React from 'react';
import { Box } from 'admin-bro'
const PropertyItem = (props) => {
return (
<Box>{props.record.populated.userId.params.link}</Box>
)
}
export default PropertyItem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment