hard page flip for all pages
Opened this issue · 1 comments
rafaelfaria commented
How do I set a hard page flip to all the pages instead of only for the cover?
Azariagmt commented
I believe you can set data-density="hard" on the outermost div of the Page component.
const Page = React.forwardRef((props, ref) => {
return (
<div className="page page-cover" ref={ref} data-density="hard">
<div className="page-content">
</div> ); });