mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
28 lines
386 B
Plaintext
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');
|
|
```
|