Nevermind I got this to work 🙂
<?php
if ( have_rows( 'review_list_precontent', 'option' ) ) :
while ( have_rows( 'review_list_precontent', 'option' ) ) : the_row();
if ( have_rows( 'page_content' ) ) :
while ( have_rows( 'page_content' ) ) : the_row();
?>
<section>
<?php get_template_part('partials/page-content/'. get_row_layout());?>
</section>
<?php
endwhile; endif;
endwhile; endif;
?>