'Whenever I m wrapping any elements in Carousel material icon in react js ,the screen is going blank white. Please tell me how to solve this?
import React from "react";
import Carousel from "react-material-ui-carousel";
function App() {
return (
<>
<Carousel>
<div>Hello world</div>
</Carousel>
</>
);
}
export default App;
While running this on localhost:3000 my screen went white blank but if I didn't use Carousel then everything was working fine . Please tell me how to solve this
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
