Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x | import './App.css' import React, {Component} from 'react' class App extends Component { render() { return <div className="App"> <div className="App-heading App-flex"> <h2>Welcome to <span className="App-react">React</span></h2> </div> <div className="App-instructions App-flex"> <img className="App-logo" src={require('./react.svg')}/> <p>Edit <code>src/App.js</code> and save to hot reload your changes.</p> </div> </div> } } export default App |