JSFiddle - React, Tailwind, and code Playground
HTML
// display posts organized by date in ascending order
<?php $posts = query_posts( $query_string . '&orderby=date&order=asc' ); ?>
<?php if( $posts ) : ?>
<ul id="data">
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<li class="date-node">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<span><?php the_excerpt(); ?></span>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>