h1
h2
h3
paragraph
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
bold
italic
- ul1
- ul2
- ul3
- ol1
- ol2
- ol3
blockquote
This is inline code
.
Code Block
App.tsx
import { ReactElement, ReactNode } from 'react'
- type Props = {}
+ interface Props {
+ children: ReactNode
+ }
function App({
children
}: Props): ReactElement {
return (
<div>
{children}
</div>
)
}