render() function is required for each components. render() returns in html and displayed in components.
if we want to render more than one elements,all must be inside one parents tag like <div>,<form>.
render(){
return(
<h1>hello,everyone</h1>
)
}