mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			413 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			413 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import recordSections from '../../meta/recordSections'
 | 
						|
import Layout from '../../src/templates'
 | 
						|
 | 
						|
const Universe = () => {
 | 
						|
    return (
 | 
						|
        <Layout
 | 
						|
            slug={'/universe'}
 | 
						|
            section="universe"
 | 
						|
            sectionTitle={recordSections.universe.title}
 | 
						|
            theme={recordSections.universe.theme}
 | 
						|
            isIndex
 | 
						|
            title="Overview"
 | 
						|
        />
 | 
						|
    )
 | 
						|
}
 | 
						|
 | 
						|
export default Universe
 |