Set the initial page

If you want the `Viewer` to be displayed at a particular page initially, then use the `initialPage` option:
import { Viewer } from '@react-pdf-viewer/core';
<Viewer
// The page is zero-based index
// We will display the third page initially
initialPage={2}
/>;