| Total Complexity | 1 | 
| Complexity/F | 1 | 
| Lines of Code | 24 | 
| Function Count | 1 | 
| Duplicated Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | import React, { Component } from "react" | 
            ||
| 2 | |||
| 3 | import Search from "../components/search-container"  | 
            ||
| 4 | import SEO from "../components/seo"  | 
            ||
| 5 | import Layout from "../layouts/index"  | 
            ||
| 6 | |||
| 7 | class SearchPage extends Component { | 
            ||
| 8 |   render() { | 
            ||
| 9 | return (  | 
            ||
| 10 | <Layout>  | 
            ||
| 11 |         <SEO lang="nl-BE" title="Zoeken" description="Zoekpagina KCVV Elewijt" path={this.props.location.pathname} /> | 
            ||
| 12 | |||
| 13 |         <div className={`limited-width_wrapper`}> | 
            ||
| 14 | <h1>Zoeken</h1>  | 
            ||
| 15 | |||
| 16 | <Search />  | 
            ||
| 17 | </div>  | 
            ||
| 18 | </Layout>  | 
            ||
| 19 | )  | 
            ||
| 20 | }  | 
            ||
| 21 | }  | 
            ||
| 22 | |||
| 23 | export default SearchPage  | 
            ||
| 24 |