Thomathings

Elements Check

Jan 1, 1995

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
  1. ol1
  2. ol2
  3. ol3

link

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>
    )
  }

Video

React component