2021-03-29 03:57:22 +02:00
|
|
|
import ReactMarkdown from 'react-markdown';
|
2021-03-29 04:10:33 +02:00
|
|
|
import { Header } from '../component/header';
|
2021-03-29 05:32:35 +02:00
|
|
|
import { Email } from '../component/email';
|
2021-03-29 03:57:22 +02:00
|
|
|
import md from '../faq.md';
|
|
|
|
|
|
|
|
export default function Faq() {
|
|
|
|
return (
|
2021-03-29 05:32:35 +02:00
|
|
|
<div>
|
2021-03-29 04:10:33 +02:00
|
|
|
<Header faqPage />
|
2021-03-29 05:32:35 +02:00
|
|
|
|
|
|
|
<main>
|
|
|
|
<div className="content md">
|
|
|
|
<ReactMarkdown>{md}</ReactMarkdown>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Email />
|
|
|
|
</main>
|
|
|
|
</div>
|
2021-03-29 03:57:22 +02:00
|
|
|
);
|
|
|
|
}
|