Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am struggling to show an image to my react app and need some help to display, have created CSS file in terms of size, but need to display it to my application.

What I have tried:

// CSS file image
/*Dron image*/
.image {
  width: 416px;
  height: 416px;
}



//App js file to display image to the web browser
import React from "react";
import './App.css';
import './index.css';
import './images'
class App extends React.Component {

	// Constructor
	constructor(props) {
		super(props);

		this.state = {
			items: [],
			DataisLoaded: false
		};
	}

}

export default App;
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900