I was trying SSR for SEO purposes in my react app. Getting these errors (..which are not actual errors according to react).
first I got err in
componenDidMount=()=>
after commenting this
I got err in
state={}
I was trying SSR for SEO purposes in my react app. Getting these errors (..which are not actual errors according to react).
first I got err in
componenDidMount=()=>
after commenting this
I got err in
state={}
You have a syntax error.
change this:
componentDidMount=()=>{}
state={};
to this:
componentDidMount() {
}
this.state = {}
In case it doesn't work, take a look