Files
reacord/packages/docs/content/getting-started.md
2021-12-30 11:48:14 -06:00

438 B

meta
meta
title description
Getting Started Learn how to get started with Reacord.

Getting Started

welcome

  • install it and do the thing
  • then do another thing

here's a code block

import React from "react"

function Counter() {
  const [count, setCount] = useState(0)
  return (
    <>
      You clicked {count} times
      <Button onClick={() => setCount(count + 1)}>Click me</Button>
    </>
  )
}

yeah