Trying to avoid extends of Component as the component merely render data, it can be standalone.
const CountDown = () => {
render(){
return(
<p>Countdown.jsx</p>
)
}
}
module.exports = Countdown
But what's wrong? I got unexpected token at render(){ ... }