|  | @@ -1,10 +1,13 @@
 | 
	
		
			
			| 1 | 1 |  import React from 'react'
 | 
	
		
			
			|  | 2 | +import { TextAreaPlugin } from 'tracim_lib'
 | 
	
		
			
			| 2 | 3 |  
 | 
	
		
			
			| 3 | 4 |  const PageHtml = props => {
 | 
	
		
			
			| 4 | 5 |    return (
 | 
	
		
			
			| 5 | 6 |      <div className='wsFilePageHtml__contentpage__textnote'>
 | 
	
		
			
			| 6 | 7 |        <div className='wsFilePageHtml__contentpage__textnote__latestversion' dangerouslySetInnerHTML={{__html: props.version}} />
 | 
	
		
			
			| 7 | 8 |        <div className='wsFilePageHtml__contentpage__textnote__text' dangerouslySetInnerHTML={{__html: props.text}} />
 | 
	
		
			
			|  | 9 | +
 | 
	
		
			
			|  | 10 | +      <TextAreaPlugin customClass={'wsFilePageHtml'} />
 | 
	
		
			
			| 8 | 11 |      </div>
 | 
	
		
			
			| 9 | 12 |    )
 | 
	
		
			
			| 10 | 13 |  }
 |