JSFiddle - React, Tailwind, and code Playground

by ChangJoo Park

HTML

<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/tailwind.min.css">
<div class="min-h-screen md:flex">
  <div class="flex-none w-full md:max-w-xs bg-purple text-white">
    Sidebar
  </div>
  <div class="flex-1 bg-blue text-white container">
    Main content area
  </div>
</div>