aboutsummaryrefslogtreecommitdiff
path: root/pages/logs/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'pages/logs/index.tsx')
-rw-r--r--pages/logs/index.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/pages/logs/index.tsx b/pages/logs/index.tsx
new file mode 100644
index 0000000..7f11e86
--- /dev/null
+++ b/pages/logs/index.tsx
@@ -0,0 +1,16 @@
+import DefaultPage from '../../templates/Default';
+import Markdown from '../../components/Markdown';
+//@ts-ignore
+import md from './logs.md';
+
+export default function Logs() {
+ return(
+ <DefaultPage
+ path={"/logs"}
+ >
+ <Markdown
+ md={md}
+ />
+ </DefaultPage>
+ );
+} \ No newline at end of file