I am submitting the correct code and it renders correctly the last step says it’s failing. I can’t move on Here’s a link for proof: http://prntscr.com/h5fa77
import React from ‘react’;
import ReactDOM from ‘react-dom’;
import {Greeting} from ‘./Greeting’;
class App extends React.Component {
render() {
return (
Hullo and, “Welcome to The Newzz,” “On Line!”
Latest newzz: where is my phone?
);
}
}
ReactDOM.render(
,
document.getElementById(‘app’)
);
import React from ‘react’;
export class Greeting extends React.Component {
render() {
return
Hi there, {this.props.name}!
;}
}
<do not remove the three backticks above>