Files
DefectingCat.github.io/pages/p/hello-world.mdx
2022-04-06 10:26:32 +08:00

28 lines
386 B
Plaintext

---
title: Hello world
date: '2022-04-06'
tags: ['hello world']
---
import Layout from 'layouts/MDXLayout.tsx';
export const meta = {
title: 'Hello world',
date: '2022-04-06',
tags: ['hello world'],
};
export default ({ children }) => (
<Layout {...meta} showTOC={false}>
{children}
</Layout>
);
## Hello
This is my first post!
```ts
console.log('Hello world');
```