Created
September 5, 2016 10:14
-
-
Save johntran/a8e31103296a4d652b994ad439f260c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ProfileImage = () => ( | |
<li> | |
<a> | |
<span class="image"><img src="images/img.jpg" alt="Profile Image" /></span> | |
<span> | |
<span>John Smith</span> | |
<span class="time">3 mins ago</span> | |
</span> | |
<span class="message"> | |
Film festivals used to be do-or-die moments for movie makers. They were where... | |
</span> | |
</a> | |
</li> | |
) | |
const SeeAllAlert = () => ( | |
<li> | |
<div class="text-center"> | |
<a> | |
<strong>See All Alerts</strong> | |
<i class="fa fa-angle-right"></i> | |
</a> | |
</div> | |
</li> | |
) | |
const PresentationDiv = () => ( | |
<li role="presentation" class="dropdown"> | |
<a href="javascript:;" class="dropdown-toggle info-number" data-toggle="dropdown" aria-expanded="false"> | |
<i class="fa fa-envelope-o"></i> | |
<span class="badge bg-green">6</span> | |
</a> | |
<ul id="menu1" class="dropdown-menu list-unstyled msg_list" role="menu"> | |
{ProfileImage*4} | |
{SeeAllAlert} | |
</ul> | |
</li> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment