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