Oops probably should've committed, not even sure what's changed. Set up MDX, set up cv and print, set up dark mode, look at react query

This commit is contained in:
2024-08-08 01:21:34 +01:00
parent 433ba19a7a
commit 7f88af8ee3
30 changed files with 3184 additions and 703 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
export default function Post({children}: {children: React.JSX.Element}): React.JSX.Element {
return (
<>
{children}
</>
);
}