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