React responsive carousel: options not working

For some reason, passing the options as props isn´t working. Don´t know what I´m doing wrong:

class App extends Component {
  render() {
    return (
      <div className="App">
  <Carousel showIndicators={false} />
      </div>
    );
  }
}

Here´s the documentation: https://www.npmjs.com/package/react-responsive-carousel

Check out the DemoCarousel component on the doc page you linked to – your Carousel has no child elements, so it has nothing to show.