expected an assignment or function call instead saw an expression code example
Example: Expected an assignment or function call and instead saw an expression
Make sure to include "return()" within the code block.
export const Example = () => {
return (
<div>
<p>Don't forget "return" within your code block.</p>
</div>
)
}