import * as React from 'react'; import { RecordContextProvider } from '../controller/record'; import { WithListContext } from '../controller/list/WithListContext'; export const SimpleList = ({ children, render, inline = false, }: { children?: React.ReactNode; render?: (record: any) => React.ReactNode; inline?: boolean; }) => ( isPending ? null : children ? ( children ) : ( ) } /> );