8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
|
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)
|
||
|
}
|