8 lines
171 B
TypeScript
Raw Normal View History

import { safe } from '~/functions/safe'
export const Safe = props => {
// do not render more than the limit of things to prevent infinite loops
return safe(props)
}