Init next.js port

This commit is contained in:
2021-12-07 22:38:31 -05:00
parent 6fde6b4f15
commit 2db4c28590
38 changed files with 18522 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
import ReactMarkdown from 'react-markdown';
import Layout from '../../components/layout';
// @ts-ignore
import ReadmeMd from '../../public/grade-calc/README.md';
function GCReadme() {
return (<Layout name="Read Me" ancestors={[{name:'Grade Calc', path: 'grade-calc'}]}>
<section className='block'>
<ReactMarkdown>{ReadmeMd}</ReactMarkdown>
</section>
</Layout>);
}
export default GCReadme;