JSFiddle - React, Tailwind, and code Playground

by Anusha_Mallajosyula

HTML

<div id="login">
    Login Section
</div>
<div id="register">
    Register Section
</div>

CSS

#login{
    background:yellow;
    height:50%;
    width:35%;
    float:left;
}
#register{
    background:pink;
    height:50%;
    width:35%;
    float:left;
}