mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	A specific grammar is needed to highlight .jsx files Thus, there are now in a distinct language but still in the JavaScript group
		
			
				
	
	
		
			24 lines
		
	
	
		
			593 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			593 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const React = require('react')
 | |
| 
 | |
| module.exports = React.createClass({
 | |
|   render: function() {
 | |
|     let {feeds, log} = this.props;
 | |
| 
 | |
|     log.info(feeds);
 | |
|     return <div className="feed-list">
 | |
|       <h3>News Feed's</h3>
 | |
|       <ul>
 | |
|         {feeds.map(function(feed) {
 | |
|           return <li key={feed.name} className={feed.fetched ? 'loaded' : 'loading'}>
 | |
|             {feed.data && feed.data.length > 0 ?
 | |
|               <span>{feed.name} <span className='light'>({feed.data.length})</span></span>
 | |
|               : 'feed.name' }
 | |
|           </li>
 | |
|         })}
 | |
|       </ul>
 | |
|     </div>;
 | |
|   }
 | |
| });
 |