JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.5/jquery.fullpage.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.5/jquery.fullpage.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.5/vendors/scrolloverflow.js"></script>
<div id="fullpage">
	<div class="section fp-table"><div class="fp-tableCell">Section</div></div>
	<div class="section fp-table"><div class="fp-tableCell">Section</div></div>
	<div class="section fp-table"><div class="fp-tableCell">Section</div></div>
	<div class="section fp-table"><div class="fp-tableCell">Section</div></div>
</div>

CSS

.fp-tableCell {
  text-align:center;
}

JavaScript

$(document).ready(function() {
	$('#fullpage').fullpage({
		paddingTop: '-80px',

        verticalCentered: false,
        css3: false,
        setAllowScrolling: false,
        animateAnchor: false,

        scrollOverflow: true,
	});
});