import React from "react" import PropTypes from "prop-types" const Fallback = ({ name }) => (
😱 Could not render { name === "t" ? "this component" : name }, see the console.
) Fallback.propTypes = { name: PropTypes.string.isRequired, } export default Fallback