Skip to content

Instantly share code, notes, and snippets.

Last active September 5, 2016 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4ace1e183bbe62696696e9f3d215e774 to your computer and use it in GitHub Desktop.
Save anonymous/4ace1e183bbe62696696e9f3d215e774 to your computer and use it in GitHub Desktop.
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