score:0

you can't render an object within a component in react.

either stringify your object

    const tier = ({ classes, objectinformation }) => {
      return (
        <div>{json.stringify(objectinformation)}</div> 
      )
    }

or only select a part of it.

    const tier = ({ classes, objectinformation }) => {
      return (
        <div>{objectinformation.title}</div> 
      )
    }

score:0

solution

i missed an s on the imports.

incorrect: import tiers from "components/tiers/tier"

correct: import tiers from "components/tiers/tiers"

changing this fixed the issue.


Related Query

More Query from same tag