Expression expected for return function when rendering a component

994 views Asked by At

I am writing a simple component and keep receiving expression expected after the first parenthesis of the return function.

import React, { Component } from 'react';

class EventsPage extends Component{
    render(){
        return( //<- error underlined here

        );
    }
}

Edit:

enter image description here

Edit 2:

enter image description here

0

There are 0 answers