@kiwicom/smart-faq
Version:
Smart FAQ
29 lines (25 loc) • 517 B
JavaScript
// @flow
import React from 'react';
import Head from 'next/head';
import Article from '../SmartFAQ/StaticFAQ/ArticleDetail/Article';
const Index = () => (
<>
<Head>
<title>My page title</title>
</Head>
<div>
<Article
match={{
params: {
articleId: 'RkFRQXJ0aWNsZToyOA==',
categoryId: 'RkFRQ2F0ZWdvcnk6OTA=',
},
isExact: true,
path: '',
url: '',
}}
/>
</div>
</>
);
export default Index;