can now generate mdx from nunjucks

This commit is contained in:
Felix Roos
2022-05-24 00:03:59 +02:00
parent b5b0fbbd38
commit 4acdabe439
10 changed files with 627 additions and 274 deletions
+4
View File
@@ -7,6 +7,8 @@ This program is free software: you can redistribute it and/or modify it under th
import React from 'react';
import ReactDOM from 'react-dom';
import Tutorial from './tutorial.mdx';
import ApiDoc from './ApiDoc'
import Api from './api.mdx';
import './style.scss';
import '@strudel.cycles/react/dist/style.css';
@@ -30,6 +32,8 @@ ReactDOM.render(
</header>
<main className="p-4 pl-6 max-w-3xl prose">
<Tutorial />
<Api />
<ApiDoc />
</main>
</div>
</React.StrictMode>,