Files
DefectingCat.github.io/pages/p/second-post.mdx
DefectingCat 5b71b49814 Add post card margin
* Add about page
* Add github icon on footer
2022-03-25 20:48:49 +08:00

24 lines
309 B
Plaintext

---
title: Second post test
date: '2022-03-25'
tags: ['functions', 'JavaScript']
---
import Layout from 'layouts/MDXLayout.tsx';
# Hello world
## Hello
This is my second post.
```tsx
console.log('Hello world.');
```
### h3
this is h3 test
export default ({ children }) => <Layout>{children}</Layout>;