Reputation: 169
I am newbie to react js and trying very basic program for class component.
here is my code
import React, { Component } from 'react'
Class Welcome extends Component{
render(){
return <h1>My Component</h1>
}
}
export default Welcome
getting error on line no 4:7 as Unexpected token, expected ";"
Not getting where am i doing wrong.
I know something silly mistake is there but not getting where am i doing wrong.
Upvotes: 0
Views: 306