JSFiddle - React, Tailwind, and code Playground

by Jed Mao

HTML

<div class="page">
    <div class="page__content">
        <div class="page__filters">filters here</div><!--
     --><div class="page__results">results here</div>
    </div>
</div>

SCSS

.page__filters, .page__results {
    display: inline-block;
    width: 50%;
}

.page__filters {
    background: tomato;
}

.page__results {
    background: yellowgreen;
}