--- meta: title: Getting Started description: 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 ```tsx import React from "react" function Counter() { const [count, setCount] = useState(0) return ( <> You clicked {count} times ) } ``` yeah