Problems running my expo project unexpected token

having trouble running expo project.
The situation started when I added a new card.js file and moved all of my content from my main.js file to my card.js

in your render function you have

return {

}

it needs to be

return (

)

curly braces would throw a syntax error here, as you’ve noticed :wink:

Thank you! I have been trying to figure that out since all day yesterday