8 lines
173 B
TypeScript
Raw Normal View History

2024-03-23 22:19:49 +00:00
import { safe } from "~/functions/safe"
2024-03-23 22:19:49 +00:00
export const Safe = (props) => {
// do not render more than the limit of things to prevent infinite loops
return safe(props)
}